Skip to content

PR Build: #89 (1.92) - 218954: Adding more redirects #92

PR Build: #89 (1.92) - 218954: Adding more redirects

PR Build: #89 (1.92) - 218954: Adding more redirects #92

Workflow file for this run

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 howso-engine-py'
extras: ''
xray:
uses: "howsoai/.github/.github/workflows/scan-pull-request.yml@main"
secrets: inherit
with:
upstream-packages: 'amalgam-lang-py howso-engine-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: ['gen-requirements', 'xray']
if: always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled'))
runs-on: ubuntu-latest
steps:
- run: exit 1