Add along-step and tracking cut optical executors (#1540) #459
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 | |
on: | |
push: | |
branches: | |
- develop | |
- backports/** | |
concurrency: | |
group: push-${{github.ref}}-${{github.run_number}}-${{github.workflow}} | |
cancel-in-progress: true | |
jobs: | |
build-ultralite: | |
uses: ./.github/workflows/build-ultralite.yml | |
build-fast: | |
uses: ./.github/workflows/build-fast.yml | |
build-docker: | |
uses: ./.github/workflows/build-docker.yml | |
build-spack: | |
uses: ./.github/workflows/build-spack.yml | |
all: | |
needs: [build-fast, build-docker, build-spack] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Success | |
run: "true" | |
# vim: set nowrap tw=100: |