Skip to content

Commit 8b29ea4

Browse files
committed
Add PHP 8.2 test runner
1 parent b469c9b commit 8b29ea4

File tree

1 file changed

+27
-9
lines changed

1 file changed

+27
-9
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,34 @@ jobs:
2424
name: PHP 8.1
2525
runs-on: ubuntu-latest
2626
container:
27-
image: kirschbaumdevelopment/laravel-test-runner:8.1
27+
image: kirschbaumdevelopment/laravel-test-runner:8.1
2828

2929
steps:
30-
- uses: actions/checkout@v1
31-
with:
32-
fetch-depth: 1
30+
- uses: actions/checkout@v1
31+
with:
32+
fetch-depth: 1
3333

34-
- name: Install composer dependencies
35-
run: |
36-
composer install --prefer-dist --no-interaction --no-scripts
34+
- name: Install composer dependencies
35+
run: |
36+
composer install --prefer-dist --no-interaction --no-scripts
3737
38-
- name: Run Testsuite
39-
run: vendor/bin/phpunit tests/
38+
- name: Run Testsuite
39+
run: vendor/bin/phpunit tests/
40+
41+
phpunit-php82:
42+
name: PHP 8.2
43+
runs-on: ubuntu-latest
44+
container:
45+
image: kirschbaumdevelopment/laravel-test-runner:8.2
46+
47+
steps:
48+
- uses: actions/checkout@v1
49+
with:
50+
fetch-depth: 1
51+
52+
- name: Install composer dependencies
53+
run: |
54+
composer install --prefer-dist --no-interaction --no-scripts
55+
56+
- name: Run Testsuite
57+
run: vendor/bin/phpunit tests/

0 commit comments

Comments
 (0)