From bca8b6b6063e093231718b45a4989e9b762fb790 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Tue, 20 Aug 2019 12:23:25 +0200 Subject: [PATCH] adding codecov token + improving GitHub jobs names --- .github/workflows/continuous-delivery-workflow.yml | 2 +- .github/workflows/continuous-integration-workflow.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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