Skip to content

Commit

Permalink
Update run_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
moi15moi committed Feb 3, 2024
1 parent 8b3ae3c commit 18dcbee
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,21 @@ jobs:
run: pip install --upgrade --upgrade-strategy eager .

- name: Install platform-specific requirements (Ubuntu)
if: matrix.os == 'ubuntu-latest'
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install mkvtoolnix
- name: Install platform-specific requirements (macOS)
if: matrix.os == 'macos-latest'
if: runner.os == 'macOS'
run: brew install mkvtoolnix

- name: Install platform-specific requirements (Windows)
if: matrix.os == 'windows-latest'
if: runner.os == 'Windows'
run: |
choco install mkvtoolnix --no-progress --yes
echo "C:\Program Files\MKVToolNix" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install pytest
run: |
pip install pytest
Expand Down

0 comments on commit 18dcbee

Please sign in to comment.