diff --git a/.github/workflows/continuous-delivery-workflow.yml b/.github/workflows/continuous-delivery-workflow.yml index f2ad8eee..3c86c302 100644 --- a/.github/workflows/continuous-delivery-workflow.yml +++ b/.github/workflows/continuous-delivery-workflow.yml @@ -6,7 +6,7 @@ on: jobs: publish: - name: Publish + name: Publish to Docker Hub runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index b44a770a..2306e62f 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -3,10 +3,10 @@ on: [push, pull_request] jobs: tests: - name: Tests + name: Lint, tests and code coverage 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) \ No newline at end of file + - run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file