30f5a82d35
less useful as more type hints are added
31 lines
675 B
YAML
31 lines
675 B
YAML
name: Checks
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 4
|
|
matrix:
|
|
python-version: [3.6, 3.7]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install portaudio19-dev
|
|
pip install -r requirements.qt
|
|
- name: Run checks
|
|
run: |
|
|
make check
|
|
|