html-object-strings/.github/workflows/ci.yml
Joby Elliott 4bff7f2f87 cleaning up and updating
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.
2024-07-11 19:33:51 -06:00

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"