Replace use of std::function
with adiar::...
aliases
#789
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: cancel | |
on: [pull_request] | |
jobs: | |
cancel: | |
name: 'Cancel Previous Runs' | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'Benchmarks' | |
with: | |
workflow_id: 'benchmark.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'Examples' | |
with: | |
workflow_id: 'examples.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'Unit tests' | |
with: | |
workflow_id: 'test.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'System Tests' | |
with: | |
workflow_id: 'system_test.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'Linux Build' | |
with: | |
workflow_id: 'linux.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'MacOS Build' | |
with: | |
workflow_id: 'mac.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/cancel-workflow-action@0.9.0 | |
name: 'Windows Build' | |
with: | |
workflow_id: 'windows.yml' | |
access_token: ${{ github.token }} |