chore(ci): Align GitHub workflows across Python projects #1
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: CI (PR) | |
| on: | |
| # Runs whenever a pull request is opened or updated. | |
| pull_request: | |
| jobs: | |
| check_pr_title: | |
| name: Check PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| doc_checks: | |
| name: Doc checks | |
| uses: ./.github/workflows/_check_docs.yaml | |
| secrets: inherit | |
| code_checks: | |
| name: Code checks | |
| uses: ./.github/workflows/_check_code.yaml | |
| tests: | |
| name: Tests | |
| uses: ./.github/workflows/_tests.yaml | |
| secrets: inherit |