31 lines
668 B
YAML
31 lines
668 B
YAML
|
name: Checks
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
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 pytype
|
||
|
|