We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 067a746 commit b972f39Copy full SHA for b972f39
1 file changed
.github/workflows/continuous_integration.yml
@@ -6,6 +6,10 @@ on:
6
branches:
7
- master
8
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
12
+
13
jobs:
14
15
continuous-integration:
@@ -25,12 +29,6 @@ jobs:
25
29
fail-fast: false
26
30
27
31
steps:
28
- # Cancel previous runs of the same branch
- - name: cancel
- uses: styfle/cancel-workflow-action@0.10.0
- with:
32
- access_token: ${{ github.token }}
33
-
34
- name: "Checkout"
35
uses: "actions/checkout@v3"
36
@@ -58,4 +56,4 @@ jobs:
58
56
run: |
59
57
composer update ${{ matrix.install-args }} --no-interaction --no-progress --prefer-dist
60
- name: "Run tests with phpunit/phpunit"
61
- run: "vendor/bin/phpunit"
+ run: "vendor/bin/phpunit"
0 commit comments