Skip to content

Commit

Permalink
Added PHP 8.4 to tests
Browse files Browse the repository at this point in the history
- Updated CI workflow
  • Loading branch information
josemmo committed Feb 8, 2024
1 parent 4910f27 commit 78317c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
include:
- php-version: '8.2'
deploy: ${{ github.ref == 'refs/heads/master' }}
- php-version: '8.3'
deploy: ${{ github.ref == 'refs/heads/master' }}
- php-version: '8.4'
experimental: true
steps:
# Download code from repository
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Setup PHP
- name: Setup PHP
Expand All @@ -36,7 +36,7 @@ jobs:
# Run static analyzer
- name: Run static analyzer
if: ${{ success() && matrix.php-version != '7.1' }}
run: vendor/bin/phan --color --no-progress-bar
run: vendor/bin/phan --allow-polyfill-parser --color --no-progress-bar

# Run tests
- name: Run tests
Expand Down

0 comments on commit 78317c4

Please sign in to comment.