From ee43e2434589f8cc04d3a17ef81a33ebc2848b52 Mon Sep 17 00:00:00 2001 From: Shaun Wang Date: Fri, 16 Jul 2021 17:22:40 +1200 Subject: [PATCH] Rename GH actions. (#1222) * Rename GH actions. * Update test action. --- .github/workflows/coverage.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index cfb2b9cd2e..980e63a66f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -1,4 +1,4 @@ -name: coverage +name: Tests Coverage on: workflow_dispatch: @@ -11,7 +11,7 @@ on: jobs: test: - name: coverage + name: Coverage Report runs-on: ubuntu-latest steps: - name: Cancel Previous Runs diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48e259f0ae..ffc908aee6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ on: - master jobs: - cancel: + clean-up-actions: runs-on: ubuntu-latest steps: - name: Cancel Previous Runs @@ -18,11 +18,11 @@ jobs: uses: styfle/cancel-workflow-action@0.9.0 with: access_token: ${{ github.token }} - build: + checks-and-tests: runs-on: [self-hosted, linux] env: SCCACHE_CACHE_SIZE: "50G" - needs: cancel + needs: clean-up-actions steps: - uses: actions/checkout@v2 with: