From e5c47a46b5d394407f663917e5357c7ce5f36533 Mon Sep 17 00:00:00 2001 From: Michael Bull Date: Tue, 28 Dec 2021 17:04:50 +0000 Subject: [PATCH] Rename check workflow to build --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4c6f62d..8fbec58 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: ci on: [ push, pull_request ] jobs: - check: + build: runs-on: ${{ matrix.os }} strategy: @@ -41,8 +41,8 @@ jobs: if: matrix.os == 'macos-latest' publish: - needs: check - if: github.ref == 'refs/heads/master' && github.event_name == 'push' && needs.check.result == 'success' + needs: build + if: github.ref == 'refs/heads/master' && github.event_name == 'push' && needs.build.result == 'success' runs-on: ${{ matrix.os }} strategy: