Skip to content

Commit

Permalink
Running phpunit tests against php8
Browse files Browse the repository at this point in the history
  • Loading branch information
bkuhl committed Nov 30, 2022
1 parent da2db3f commit 50cc994
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test

on: push

permissions:
contents: read

jobs:
phpunit-tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 7.3, 7.4, 8.0, 8.1 ]
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6

- name: PHPUnit tests
uses: php-actions/phpunit@v3

0 comments on commit 50cc994

Please sign in to comment.