Skip to content

Commit

Permalink
ci: add php 8.1 to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
helsner committed Jun 14, 2023
1 parent 80de666 commit 2bf6ce0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '7.4' ]
php: [ '7.4', '8.1' ]
include:
- php: '7.4'

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up PHP version ${{ matrix.php }}
uses: shivammathur/setup-php@v2
Expand All @@ -31,8 +31,10 @@ jobs:
run: composer validate

- name: Install dependencies
run: |
composer install
uses: ramsey/composer-install@v2
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
COMPOSER_POOL_OPTIMIZER: 0

- name: Info
run: composer info
Expand Down

0 comments on commit 2bf6ce0

Please sign in to comment.