Skip to content

update all dependencies, target python 12, drop support for previous versions of python #23

update all dependencies, target python 12, drop support for previous versions of python

update all dependencies, target python 12, drop support for previous versions of python #23

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint and Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
make install-dev
- name: Lint
run: make lint
- name: Test and check coverage
run: make coverage