diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f930ed8d..22afe337 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,22 +14,18 @@ on: jobs: tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest name: "Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }}" strategy: fail-fast: false matrix: - php: ["8.1"] - symfony: ["^5.4", "^6.0"] - sylius: ["~1.11.0", "~1.12.0", "1.13.x-dev as 1.13.0"] - node: ["14.x"] - mysql: ["8.0.36"] - - exclude: - - sylius: ~1.11.0 - symfony: "^6.0" + php: [ "8.0", "8.1", "8.2", "8.3" ] + symfony: [ "5.4.*", "^6.0" ] + sylius: [ "^1.12", "^1.13" ] + node: [ "14.x", "16.x", "18.x" ] + mysql: [ "5.7", "8.0" ] env: APP_ENV: test DATABASE_URL: "mysql://root:root@127.0.0.1/sylius?serverVersion=${{ matrix.mysql }}"