Skip to content

Commit

Permalink
ci:windows
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jan 28, 2024
1 parent 22c464b commit 726b83d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
Expand Down Expand Up @@ -55,4 +56,12 @@ jobs:
if: runner.os == 'Windows'
run: winget install ffmpeg --disable-interactivity --accept-source-agreements

- run: pytest
- name: PyTest non-Windows
run: pytest
if: runner.os != 'Windows'

- name: PyTest Windows
run: pytest
if: runner.os == 'Windows'
env:
FFMPEG_ROOT: $Env:GITHUB_PATH/Microsoft/WinGet/Links

0 comments on commit 726b83d

Please sign in to comment.