-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (40 loc) · 1.27 KB
/
run_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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