0000000: refactor GitHub PR check, build, and test workflows. #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Check | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
types: [ opened, reopened, edited, synchronize ] | |
push: | |
branches: | |
- 'main' | |
jobs: | |
# TODO: remove check-pr job once template no longer enforces job. | |
check-pr: | |
uses: ./.github/workflows/.common-pr-check.yml | |
permissions: | |
pull-requests: write | |
build: | |
uses: ./.github/workflows/build.yml | |
test: | |
uses: ./.github/workflows/test.yml |