Joby Elliott
4bff7f2f87
Brought phpstan and phpunit versions up, and fixed phpunit deprecations. I just deleted a bunch of tests of abstract classes, because phpunit has deprecated it and that stuff should all be getting tested every which way downstream anyway.
18 lines
363 B
YAML
18 lines
363 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php-versions: [8.1, 8.2, 8.3]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: php-actions/composer@v6
|
|
- uses: php-actions/phpstan@v3
|
|
- uses: php-actions/phpunit@v3
|
|
with:
|
|
test_suffix: "Test.php"
|