File tree Expand file tree Collapse file tree 1 file changed +27
-9
lines changed
Expand file tree Collapse file tree 1 file changed +27
-9
lines changed Original file line number Diff line number Diff 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/
You can’t perform that action at this time.
0 commit comments