diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e00c0b..a7535a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -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.LOCALAPPDATA }}/Microsoft/WinGet/Links