Update to new celeritas and RDC utilities (#4) #3
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: push | |
# TODO: improve run name using commit title (`message` includes details as well) | |
# run-name: >- | |
# ${{github.ref_name}}: | |
# ${{github.event.head_commit.message}} | |
# (${{github.event.pusher.name}}) | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: push-${{github.ref}}-${{github.run_number}}-${{github.workflow}} | |
cancel-in-progress: true | |
jobs: | |
build-full: | |
uses: ./.github/workflows/build-full.yml | |
all: | |
needs: [build-full] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Success | |
run: "true" | |
# vim: set nowrap tw=100: |