Skip to content

Commit

Permalink
Add PHP 8.2 test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanscott committed Apr 5, 2023
1 parent b469c9b commit 8b29ea4
Showing 1 changed file with 27 additions and 9 deletions.
36 changes: 27 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,34 @@ jobs:
name: PHP 8.1
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.1
image: kirschbaumdevelopment/laravel-test-runner:8.1

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Run Testsuite
run: vendor/bin/phpunit tests/
- name: Run Testsuite
run: vendor/bin/phpunit tests/

phpunit-php82:
name: PHP 8.2
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.2

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1

- name: Install composer dependencies
run: |
composer install --prefer-dist --no-interaction --no-scripts
- name: Run Testsuite
run: vendor/bin/phpunit tests/

0 comments on commit 8b29ea4

Please sign in to comment.