Skip to content

Commit

Permalink
Rename check workflow to build
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbull committed Dec 28, 2021
1 parent a511d6a commit e5c47a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ci
on: [ push, pull_request ]

jobs:
check:
build:
runs-on: ${{ matrix.os }}

strategy:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit e5c47a4

Please sign in to comment.