File tree 1 file changed +14
-2
lines changed
1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 14
14
name : ' Tests'
15
15
strategy :
16
16
matrix :
17
- php : ['8.1.12 ']
17
+ php : ['8.1.13 ']
18
18
19
19
runs-on : ' ubuntu-20.04'
20
20
env :
26
26
path : ' php-ext-gsl'
27
27
28
28
- uses : actions/cache@v3
29
+ if : ${{ always() }}
29
30
with :
30
31
path : ~/build-cache/php
31
32
key : ${{ runner.os }}-${{ matrix.php }}
37
38
run : ' ./php-ext-gsl/.github/workflows/test/build-php-ext-gsl.sh'
38
39
39
40
- name : ' Run tests'
40
- run : ' ./php-ext-gsl/.github/workflows/test/tests.sh'
41
+ run : ' ./php-ext-gsl/.github/workflows/test/tests.sh'
42
+
43
+ - name : Archive test errors
44
+ if : ${{ failure() }}
45
+ uses : actions/upload-artifact@v3
46
+ with :
47
+ name : test-errors
48
+ path : php-ext-gsl/tests/*.diff
49
+ retention-days : 5
50
+ - name : Download all workflow run artifacts
51
+ if : ${{ failure() }}
52
+ uses : actions/download-artifact@v3
You can’t perform that action at this time.
0 commit comments