diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41a9dc3..2ec5ebb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,12 +34,19 @@ jobs: macos: runs-on: macos-latest + strategy: + fail-fast: false + matrix: + php: [ '8.0', '8.1', '8.2', '8.3' ] + steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} - name: build run: |