Skip to content

Commit 0660dbc

Browse files
committed
tested on PHP 8
1 parent f19ff4c commit 0660dbc

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest, windows-latest, macOS-latest]
11-
php: ['7.1', '7.2', '7.3', '7.4']
11+
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
1212

1313
fail-fast: false
1414

1515
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2
18-
- uses: shivammathur/setup-php@v1
18+
- uses: shivammathur/setup-php@v2
1919
with:
2020
php-version: ${{ matrix.php }}
2121
extensions: simplexml
@@ -27,10 +27,10 @@ jobs:
2727
- run: src/tester tests -s -C
2828
shell: bash
2929
- if: failure()
30-
uses: actions/upload-artifact@v1
30+
uses: actions/upload-artifact@v2
3131
with:
3232
name: output
33-
path: tests
33+
path: tests/**/output
3434

3535

3636
# failing_test:
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v2
55-
- uses: shivammathur/setup-php@v1
55+
- uses: shivammathur/setup-php@v2
5656
with:
5757
php-version: 7.4
5858
extensions: simplexml

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 7.2
55
- 7.3
66
- 7.4
7+
- nightly
78

89
env:
910
- PHP_BIN=php
@@ -63,7 +64,7 @@ jobs:
6364
- stage: Code Coverage
6465

6566

66-
sudo: false
67+
dist: xenial
6768

6869
cache:
6970
directories:

0 commit comments

Comments
 (0)