PR Build: #90 (1.13) - 18744: Upgrades Actions workflows to use centralized versions #13
Workflow file for this run
This file contains 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: Build PR | |
run-name: "PR Build: #${{ github.event.pull_request.number }} (${{ github.run_attempt }}.${{ github.run_number }}) - ${{ github.event.pull_request.title }}" | |
on: | |
pull_request: | |
branches: | |
- "main" | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
gen-requirements: | |
uses: "howsoai/.github/.github/workflows/compile-requirements.yml@main" | |
secrets: inherit | |
with: | |
upstream-packages: 'amalgam-lang-py' | |
build: | |
needs: ['gen-requirements'] | |
uses: "./.github/workflows/build.yml" | |
secrets: inherit | |
with: | |
build-type: "PR" | |
xray: | |
needs: ['build'] | |
uses: "howsoai/.github/.github/workflows/scan-pull-request.yml@main" | |
secrets: inherit | |
with: | |
upstream-packages: 'amalgam-lang-py' | |
# This job is here to have only one final step to add for "Status Checks" | |
# in GitHub, instead of adding every leaf test from 'build-test-package' | |
final-check: | |
needs: ['build', 'gen-requirements', 'xray'] | |
if: always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) | |
runs-on: ubuntu-latest | |
steps: | |
- run: exit 1 |