From e3018574265d4452863a5e21cc35982d48b35a13 Mon Sep 17 00:00:00 2001 From: Nisheeth Barthwal Date: Mon, 3 Aug 2020 13:35:07 +0200 Subject: [PATCH] update workflow names --- .github/workflows/release-workflow.yaml | 2 +- .github/workflows/test-workflow.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-workflow.yaml b/.github/workflows/release-workflow.yaml index e343e00..25ca610 100644 --- a/.github/workflows/release-workflow.yaml +++ b/.github/workflows/release-workflow.yaml @@ -18,7 +18,7 @@ jobs: release_name: Release ${{ github.ref }} draft: false prerelease: false - - name: publish + - name: publish to gradle env: GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} diff --git a/.github/workflows/test-workflow.yaml b/.github/workflows/test-workflow.yaml index f3292df..7dee396 100644 --- a/.github/workflows/test-workflow.yaml +++ b/.github/workflows/test-workflow.yaml @@ -1,4 +1,4 @@ -name: tests +name: check on: push: @@ -7,11 +7,11 @@ on: branches: [ master ] jobs: - build: + tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: test coverage + - name: test and publish coverage env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} run: ./gradlew jacocoTestReport coverallsJacoco