Fix statistics for quantification runs and transposition sweeps are misleading #1054
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/[email protected] | |
name: 'Benchmarks' | |
with: | |
workflow_id: 'benchmark.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'Examples' | |
with: | |
workflow_id: 'examples.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'Unit tests' | |
with: | |
workflow_id: 'test.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'System Tests' | |
with: | |
workflow_id: 'system_test.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'Linux Build' | |
with: | |
workflow_id: 'linux.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'MacOS Build' | |
with: | |
workflow_id: 'mac.yml' | |
access_token: ${{ github.token }} | |
- uses: styfle/[email protected] | |
name: 'Windows Build' | |
with: | |
workflow_id: 'windows.yml' | |
access_token: ${{ github.token }} |