Add non concurrency to all workflows
							parent
							
								
									eb5604d037
								
							
						
					
					
						commit
						c95bcae93a
					
				|  | @ -2,6 +2,12 @@ name: Linux CI | |||
| 
 | ||||
| on: [pull_request] | ||||
| 
 | ||||
| # Every time you make a push to your PR, it cancel immediately the previous checks,  | ||||
| # and start a new one. The other runner will be available more quickly to your PR.  | ||||
| concurrency: | ||||
|   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     name: ${{ matrix.name }} ${{ matrix.build_type }} | ||||
|  |  | |||
|  | @ -2,6 +2,12 @@ name: macOS CI | |||
| 
 | ||||
| on: [pull_request] | ||||
| 
 | ||||
| # Every time you make a push to your PR, it cancel immediately the previous checks,  | ||||
| # and start a new one. The other runner will be available more quickly to your PR.  | ||||
| concurrency: | ||||
|   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     name: ${{ matrix.name }} ${{ matrix.build_type }} | ||||
|  |  | |||
|  | @ -2,6 +2,12 @@ name: Python CI | |||
| 
 | ||||
| on: [pull_request] | ||||
| 
 | ||||
| # Every time you make a push to your PR, it cancel immediately the previous checks,  | ||||
| # and start a new one. The other runner will be available more quickly to your PR.  | ||||
| concurrency: | ||||
|   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     name: ${{ matrix.name }} ${{ matrix.build_type }} Python ${{ matrix.python_version }} | ||||
|  |  | |||
|  | @ -2,6 +2,12 @@ name: Special Cases CI | |||
| 
 | ||||
| on: [pull_request] | ||||
| 
 | ||||
| # Every time you make a push to your PR, it cancel immediately the previous checks,  | ||||
| # and start a new one. The other runner will be available more quickly to your PR.  | ||||
| concurrency: | ||||
|   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     name: ${{ matrix.name }} ${{ matrix.build_type }} | ||||
|  |  | |||
|  | @ -2,6 +2,12 @@ name: Windows CI | |||
| 
 | ||||
| on: [pull_request] | ||||
| 
 | ||||
| # Every time you make a push to your PR, it cancel immediately the previous checks,  | ||||
| # and start a new one. The other runner will be available more quickly to your PR.  | ||||
| concurrency: | ||||
|   group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||||
|   cancel-in-progress: true | ||||
| 
 | ||||
| jobs: | ||||
|   build: | ||||
|     name: ${{ matrix.name }} ${{ matrix.build_type }} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue