Skip to content

Commit 48b4b6c

Browse files
committed
statistics: gha artifacts
1 parent 70c8793 commit 48b4b6c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Diff for: .github/workflows/test.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: 'Tests'
1515
strategy:
1616
matrix:
17-
php: ['8.1.12']
17+
php: ['8.1.13']
1818

1919
runs-on: 'ubuntu-20.04'
2020
env:
@@ -37,4 +37,14 @@ jobs:
3737
run: './php-ext-gsl/.github/workflows/test/build-php-ext-gsl.sh'
3838

3939
- name: 'Run tests'
40-
run: './php-ext-gsl/.github/workflows/test/tests.sh'
40+
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: php-ext-gsl/tests/*.diff
48+
retention-days: 5
49+
- name: Download all workflow run artifacts
50+
uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)