Reduce terminal noise during benchmark runs (#76) #42
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 Branch CI/CD | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: main-cicd | |
| cancel-in-progress: false | |
| jobs: | |
| test: | |
| name: Test & Lint | |
| uses: ./.github/workflows/test.yml | |
| docs-build: | |
| name: Build Documentation | |
| uses: ./.github/workflows/docs-build.yml | |
| docs-deploy: | |
| name: Deploy Documentation | |
| needs: [test, docs-build] | |
| uses: ./.github/workflows/docs-deploy.yml |