diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a73a76d..6f685b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,18 +14,22 @@ on: jobs: tests: - runs-on: ubuntu-22.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: ["^6.0"] - sylius: [~1.12.0] - node: ["20.x"] - mysql: ["5.7"] + php: [8.0, 8.1, 8.2, 8.3] + symfony: [^5.4, ^6.0] + sylius: [~1.12.0, ~1.13.0] + node: [18.x, 20.x] + mysql: [5.7, 8.0] + + exclude: + - sylius: ~1.13.x + php: "^8.0" env: APP_ENV: test