Skip to content

Makefile updates (#348) #449

Makefile updates (#348)

Makefile updates (#348) #449

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.9', '3.10', '3.11', '3.12']
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