We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c8793 commit 0db4cf3Copy full SHA for 0db4cf3
.github/workflows/test.yml
@@ -14,7 +14,7 @@ jobs:
14
name: 'Tests'
15
strategy:
16
matrix:
17
- php: ['8.1.12']
+ php: ['8.1.13']
18
19
runs-on: 'ubuntu-20.04'
20
env:
@@ -37,4 +37,14 @@ jobs:
37
run: './php-ext-gsl/.github/workflows/test/build-php-ext-gsl.sh'
38
39
- name: 'Run tests'
40
- run: './php-ext-gsl/.github/workflows/test/tests.sh'
+ run: './php-ext-gsl/.github/workflows/test/tests.sh'
41
+
42
+ - name: Archive test errors
43
+ if: ${{ failure() }}
44
+ uses: actions/upload-artifact@v3
45
+ with:
46
+ name: test-errors
47
+ path: tests/*.diff
48
+ retention-days: 5
49
+ - name: Download all workflow run artifacts
50
+ uses: actions/download-artifact@v3
0 commit comments