Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
permissions: {}

jobs:
# Note: When changing job names here or adding/removing jobs, the master
# branch protection ruleset on Github must be adapted (i.e. which jobs need to
# pass for a PR to be able to be merged).
check:
name: Typecheck, test, lint, build
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions: {}

jobs:
checks:
name: Master pipeline checks
uses: ./.github/workflows/checks.yml
permissions: # ceiling for the called jobs (union of what they each need)
contents: read
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ permissions: {}

jobs:
checks:
name: PR pipeline checks
# ^This is the name of the job (or rather: the name prefix of the checks.yml
# jobs) we require in the master branch protection ruleset to pass before a
# PR can be merged.
uses: ./.github/workflows/checks.yml
permissions: # ceiling for the called jobs (union of what they each need)
contents: read
Expand Down