Skip to content

Move to python 3.8 #477

Move to python 3.8

Move to python 3.8 #477

Workflow file for this run

name: Lint n' Test
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.8.x
uses: actions/setup-python@v4
with:
python-version: "3.8.18"
- name: Install dependencies
run: pip install .[dev]
- name: Lint
run: make lint
- name: Format
run: make format
- name: Test
run: make test