chore(quality): add scripts for code quality (#43) #2
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 | |
| on: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| - v[0-9]+ | |
| - v[0-9]+.[0-9]+ | |
| - cryostat-v[0-9]+.[0-9]+ | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/ci.yaml | |
| with: | |
| # container-archs: amd64, arm64 | |
| # TODO build multiarch. This is extremely slow since a lot of cross-compilation needs to be done, and image layer caching is not set up or well supported. | |
| container-archs: amd64 |