Skip to content

Update pypi

Update pypi #46

Workflow file for this run

name: Style checks and test
on: [push]
jobs:
run_tests:
name: Style checks and test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies - Python ${{ matrix.python-version }}
run: PYTHON_VERSION=${{ matrix.python-version }} make deps
- name: Lint
run: make check
- name: Test
run: make test