From dd2542dcd613ad2e98783b153bc46427f03c28a9 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Tue, 27 Aug 2019 11:07:05 +0200 Subject: [PATCH] updating Travis and GitHub Actions workflows --- .github/workflows/push.yml | 6 +++--- .travis.yml | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) 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