-
Notifications
You must be signed in to change notification settings - Fork 17
53 lines (50 loc) · 1.46 KB
/
build.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
52
53
# Install Python dependencies and run tests
name: build
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-22.04', 'windows-2022', 'macos-12']
steps:
- name: Checkout Forest code from GitHub repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Forest dependencies
# required by librosa
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg libsndfile1
- name: Install Forest
run: pip install -e .
- name: Install dev dependencies
run: pip install -r requirements.txt
- name: Run code style checking
run: flake8
- name: Run static type checking
run: mypy -p forest
- name: Run legacy tests
run: python -m unittest tests/imports.py
- name: Run pytest suite
run: pytest
build_docs:
runs-on: ubuntu-22.04
defaults:
run:
working-directory: ./docs
steps:
- name: Checkout Forest code from GitHub repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install documentation build dependencies
run: pip install -r requirements.txt
- name: Build the docs
run: make html SPHINXOPTS="-W"