Skip to content

Commit

Permalink
Allow tests to fail on PHP 8 until the library is made compatible wit…
Browse files Browse the repository at this point in the history
…h it
  • Loading branch information
LinaKind committed Jan 15, 2025
1 parent 3d86800 commit db489d2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,24 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
php_version: ["7.1", "7.2", "7.3", "7.4"]
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make PHP_VERSION=${{ matrix.php_version }} test-ci

tests-future-versions:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php_version: ["8.0", "8.1", "8.2", "8.3"]
steps:
- uses: actions/checkout@v4
- name: Run tests
run: make PHP_VERSION=${{ matrix.php_version }} test-ci
continue-on-error: true

linting:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit db489d2

Please sign in to comment.