Update docker/setup-buildx-action digest to bb05f3f #155
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: Pull request checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - "*.x" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-test: | |
| uses: ./.github/workflows/build-and-test.yml | |
| secrets: inherit | |
| license: | |
| uses: ./.github/workflows/licence-checker.yml | |
| quality-gate: | |
| if: ${{ always() }} | |
| needs: | |
| - build-and-test | |
| - license | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Job Status | |
| run: | | |
| if [ "${{ needs.build-and-test.result }}" != 'success' ] || | |
| [ "${{ needs.license.result }}" != 'success' ]; then | |
| echo "One or more jobs failed" | |
| exit 1 | |
| else | |
| echo "Passed!" | |
| fi |