Allow use of external Celeritas (#10) #10
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: pr | |
run-name: >- | |
${{github.event.pull_request.title}} | |
(#${{github.event.number}}) | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.rst' | |
- '**.md' | |
- 'scripts/dev' | |
concurrency: | |
group: pr-${{github.ref}}-${{github.event.number}}-${{github.workflow}} | |
cancel-in-progress: true | |
jobs: | |
build: | |
uses: ./.github/workflows/build-full.yml | |
# Specifying a dependent job allows us to select a single "requires" check in the project GitHub settings | |
all: | |
if: ${{ always() }} | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
# vim: set nowrap tw=100: |