-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (39 loc) · 1.09 KB
/
Copy pathintegration.yml
File metadata and controls
43 lines (39 loc) · 1.09 KB
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
name: real-media-integration
on:
workflow_dispatch:
pull_request:
paths:
- "plexmuxy/**"
- "plexmuxy_gui/api.py"
- "tests/integration/**"
- "pyproject.toml"
- "uv.lock"
- "*.spec"
- ".github/workflows/integration.yml"
push:
branches: [main, refactor]
tags: ["v*"]
permissions:
contents: read
jobs:
mkvmerge:
name: ${{ matrix.os }} real media
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y ffmpeg mkvtoolnix p7zip-full
- if: runner.os == 'Windows'
shell: pwsh
run: choco install ffmpeg mkvtoolnix -y --no-progress
- run: python -m pip install -e ".[dev]"
- run: python -m pytest -m integration -v --basetemp .pytest-tmp/integration -o cache_dir=.pytest-tmp/cache