Skip to content

Commit

Permalink
[CI] Run E2E tests on Windows and macOS aswell
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocal committed Dec 29, 2024
1 parent b0a2100 commit 7bb7c2e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

defaults:
run:
shell: bash

jobs:
code_quality:
name: Code Quality
Expand Down Expand Up @@ -125,8 +129,11 @@ jobs:
run: symfony php vendor/bin/phpunit

e2e:
name: E2E
runs-on: ubuntu-latest
name: E2E (${{ matrix.os }})
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 7bb7c2e

Please sign in to comment.