Skip to content

Commit

Permalink
Support for PHP 8.2 Testing
Browse files Browse the repository at this point in the history
- Added 8.2 into testing matrix
- Added github access token to prevent rate limit for installing phpunit in actions
  • Loading branch information
ragboyjr committed Jan 15, 2023
1 parent be1bcb1 commit 8f49b8b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0']
php-versions: ['7.4', '8.0', '8.1', '8.2']
phpunit-versions: ['9.5']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -21,6 +21,8 @@ jobs:
ini-values: post_max_size=256M, max_execution_time=180
coverage: xdebug
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}

- name: Validate Composer
run: composer validate
Expand Down

0 comments on commit 8f49b8b

Please sign in to comment.