Skip to content

Commit

Permalink
deps: Upgrade php
Browse files Browse the repository at this point in the history
  • Loading branch information
tienvx committed Mar 16, 2024
1 parent a16067c commit 189a119
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: [8.0, 8.1, 8.2]
php: [8.1, 8.2, 8.3]
os: [ubuntu-latest, macos-latest, windows-latest]
dependencies: [ 'lowest', 'highest' ]
continue-on-error: ${{ matrix.os == 'windows-latest' && matrix.php == '8.2' }}
continue-on-error: ${{ matrix.os == 'windows-latest' && contains(fromJson('["8.2", "8.3"]'), matrix.php) }}
name: PHP ${{ matrix.php }} - OS ${{ matrix.os }} - Dependencies ${{ matrix.dependencies }}
steps:
- uses: actions/checkout@v3
Expand All @@ -34,10 +34,10 @@ jobs:
tools: composer:v2
- name: Install unrar on Ubuntu with PHP 8.1 & 8.2
run: sudo apt install unrar
if: ${{ matrix.os == 'ubuntu-latest' && contains(fromJson('["8.1", "8.2"]'), matrix.php) }}
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Install unrar on MacOS with PHP 8.1 & 8.2
run: brew install rar
if: ${{ matrix.os == 'macos-latest' && contains(fromJson('["8.1", "8.2"]'), matrix.php) }}
if: ${{ matrix.os == 'macos-latest' }}
- name: Validate composer.json
run: composer validate
- uses: ramsey/composer-install@v2
Expand Down

0 comments on commit 189a119

Please sign in to comment.