We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44cc54 commit cca588eCopy full SHA for cca588e
1 file changed
.github/workflows/tests.yml
@@ -9,6 +9,10 @@ on:
9
permissions:
10
contents: read
11
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress: true
15
+
16
jobs:
17
tests:
18
name: "PHPUnit (PHP ${{ matrix.php }})"
@@ -113,7 +117,8 @@ jobs:
113
117
SOURCE_ROOTS: 'src'
114
118
SHOW_MODIFIED: 'false'
115
119
SHOW_REMOVED: 'true'
116
- run: bash ${{ github.workspace }}/scripts/detect.sh
120
+ WORKSPACE: ${{ github.workspace }}
121
+ run: bash "${WORKSPACE}/scripts/detect.sh"
122
123
- name: "Assert expected output"
124
run: |
0 commit comments