Skip to content

Merge pull request #58 from MichaelCurrin/MichaelCurrin-patch-1 #71

Merge pull request #58 from MichaelCurrin/MichaelCurrin-patch-1

Merge pull request #58 from MichaelCurrin/MichaelCurrin-patch-1 #71

Workflow file for this run

name: Python CI
on:
push:
branches: master
paths-ignore:
- "docs/**"
- README.md
pull_request:
branches: master
paths-ignore:
- "docs/**"
- README.md
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.X]
steps:
- uses: actions/checkout@v1
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install project packages
run: make install-dev
- name: Check formatting
run: make fmt-check
- name: Lint
run: make lint
- name: Check types
run: make typecheck
- name: Unit tests
run: make test