Skip to content

Commit

Permalink
feat: e2e pipeline for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
khalifaa55 committed Sep 11, 2024
1 parent 8de6bee commit f6434aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/e2e_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ jobs:
docker version
docker info
- name: Run e2e tests
- name: Run e2e tests (Windows)
if: runner.os == 'Windows'
shell: wsl-bash {0}
run: |
cd /mnt/d/a/sedge/sedge
make e2e-test
- name: Run e2e tests (Non-Windows)
if: runner.os != 'Windows'
run: make e2e-test

0 comments on commit f6434aa

Please sign in to comment.