Skip to content

Commit

Permalink
enable all supported versions to enforce testing in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaubrey committed Oct 18, 2024
1 parent 666fe4f commit 579b868
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["7.1", "7.2", "7.3", "7.4"]
php_version: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make PHP_VERSION=${{ matrix.php_version }} test
tests-future-versions:
runs-on: ubuntu-latest
strategy:
matrix:
php_version: ["8.0", "8.1", "8.2", "8.3"]
steps:
- uses: actions/checkout@v4
- name: Run tests against all major versions of PHP
run: make PHP_VERSION=${{ matrix.php_version }} test
continue-on-error: true

0 comments on commit 579b868

Please sign in to comment.