-
Notifications
You must be signed in to change notification settings - Fork 20
45 lines (41 loc) · 1.3 KB
/
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
name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Prepare Ubuntu
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y pandoc ffmpeg
if: matrix.os == 'ubuntu-latest'
- name: Prepare OSX
run: brew install pandoc ffmpeg
if: matrix.os == 'macOS-latest'
- name: prepare Windows
run: choco install pandoc ffmpeg
if: matrix.os == 'windows-latest'
- name: Install dependencies
run: |
python -V
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r tests/requirements.txt
python -m pip install -r doc/requirements.txt
# This is needed in example scripts:
python -m pip install pillow
- name: Test
run: python -m pytest
- name: Test examples
run: python doc/examples/run_all.py
- name: Test documentation
run: python -m sphinx doc/ _build/ -b doctest