quick shortcuts to run linting+tests and fix any formatting errors #10
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: Main | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| tags: | |
| - "v[0-9]+.[0-9]+.[0-9]+" | |
| permissions: | |
| contents: read | |
| actions: read | |
| id-token: write | |
| pages: write | |
| security-events: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| checks: | |
| uses: ./.github/workflows/checks.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| build-wheels: | |
| uses: ./.github/workflows/build-wheels.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| build-docs: | |
| uses: ./.github/workflows/build-docs.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| codeql: | |
| uses: ./.github/workflows/codeql.yaml | |
| secrets: inherit | |
| with: | |
| sha: ${{ github.sha }} | |
| release: | |
| uses: ./.github/workflows/release.yaml | |
| secrets: inherit | |
| needs: | |
| - build-docs | |
| - build-wheels | |
| - checks | |
| - codeql | |
| with: | |
| sha: ${{ github.sha }} | |
| publish-docs: true |