Rename check workflow to build

This commit is contained in:
Michael Bull 2021-12-28 17:04:50 +00:00
parent a511d6ae8e
commit e5c47a46b5
1 changed files with 3 additions and 3 deletions

View File

@ -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: