Add print of repro instructions in CI script #2900
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
on: push | |
name: Code Checks (run on all branches) | |
jobs: | |
staticAnalysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/static-analysis | |
abiDiff: | |
name: ABI Compatibility Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/abi-compat | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: ABI Compatibility Report | |
path: compat_reports/umpire/3.0.0_to_4.0.0/compat_report.html |