Apply formatting #100
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
| # Main workflow file. This complex workflow declares | |
| # primary automated jobs that are relevant to | |
| # building and testing HyperCPU. | |
| name: HyperCPU CI/CD Pipeline | |
| on: | |
| push: | |
| jobs: | |
| prepare: | |
| uses: ./.github/workflows/mainline-prepare.yml | |
| compile: | |
| needs: prepare | |
| uses: ./.github/workflows/mainline-compile.yml | |
| format: | |
| needs: prepare | |
| uses: ./.github/workflows/mainline-format.yml | |
| lint: | |
| needs: prepare | |
| uses: ./.github/workflows/mainline-lint.yml |