Skip to content

chore(ci): Align GitHub workflows across Python projects #1

chore(ci): Align GitHub workflows across Python projects

chore(ci): Align GitHub workflows across Python projects #1

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
doc_checks:
name: Doc checks
uses: ./.github/workflows/doc_checks.yaml
secrets: inherit
code_checks:
name: Code checks
uses: ./.github/workflows/code_checks.yaml
tests:
name: Tests
uses: ./.github/workflows/tests.yaml
secrets: inherit