-
Notifications
You must be signed in to change notification settings - Fork 17
35 lines (32 loc) · 978 Bytes
/
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
# Install Python dependencies and run tests
name: build
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-20.04', 'windows-2019', 'macos-11']
steps:
- name: Checkout Forest code from GitHub repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Forest dependencies
# required by librosa
if: ${{ matrix.os == 'ubuntu-20.04' }}
run: sudo apt-get install -y ffmpeg libsndfile1
- name: Install Forest
run: pip install -e .
- name: Install dev dependecies
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