Merge pull request #30 from FGRCL/refactor-workflows #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: Release on Staging | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| code-quality: | ||
| name: Check code quality | ||
| uses: ./.github/workflows/codeql.yaml | ||
| test: | ||
| name: Run tests | ||
| uses: ./.github/workflows/test.yaml | ||
| publish: | ||
|
Check failure on line 15 in .github/workflows/release-staging.yaml
|
||
| name: Publish staging release | ||
| uses: ./.github/workflows/publish-test.yaml | ||
| needs: [code-quality, test] | ||