Skip to content

draft - more deps adjustment #184

draft - more deps adjustment

draft - more deps adjustment #184

Workflow file for this run

name: Lint
on: [push]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: pip install tox==3.24.5
- name: Check that code is formatted with black
run: tox -e black
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: pip install tox==3.24.5
- name: Check that imports are formatted with isort
run: tox -e isort