Skip to content

Merge pull request #337 from jack-mcivor/bugfix/np-bool-deprecation #399

Merge pull request #337 from jack-mcivor/bugfix/np-bool-deprecation

Merge pull request #337 from jack-mcivor/bugfix/np-bool-deprecation #399

Workflow file for this run

name: Python lint and test
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Run linters
run: make lint
- name: Run tests
run: make test