diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 90591c3a..2060325a 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -7,6 +7,6 @@ jobs: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - - run: make lint - - run: make tests CODE_COVERAGE=1 - - run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file + #- run: make lint + #- run: make tests CODE_COVERAGE=1 + #- run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index c832bdc7..2c3a2d57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,10 @@ stages: jobs: include: - stage: tests - script: make lint tests + script: + - make lint + - make tests CODE_COVERAGE=1 + - bash <(curl -s https://codecov.io/bash) - stage: publish if: tag IS present script: make publish VERSION=$TRAVIS_TAG DOCKER_USER=$DOCKER_USER DOCKER_PASSWORD=$DOCKER_PASS \ No newline at end of file