Skip to content

Update run_test.yml #18

Update run_test.yml

Update run_test.yml #18

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
run-tests:
name: "Test (${{matrix.os}}, Python ${{ matrix.python-version }})"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python requirements
run: pip install --upgrade --upgrade-strategy eager .
- name: Install platform-specific requirements (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install mkvtoolnix
- name: Install platform-specific requirements (macOS)
if: matrix.os == 'macos-latest'
run: brew install mkvtoolnix
- name: Install platform-specific requirements (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install mkvtoolnix
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
refreshenv
mkvpropedit -h
- name: Install pytest
run: |
pip install pytest
- name: Run tests
run: |
pytest