Skip to content

Commit

Permalink
updating Travis and GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gulien committed Aug 27, 2019
1 parent f8b63d4 commit dd2542d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
#- run: make lint
#- run: make tests CODE_COVERAGE=1
#- run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit dd2542d

Please sign in to comment.