Skip to content

support for python 3.7 removed. Support for 3.12 added. #14

support for python 3.7 removed. Support for 3.12 added.

support for python 3.7 removed. Support for 3.12 added. #14

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
pip install -e .
pip install hatch
- name: Lint
run: hatch run lint:all