Skip to content

Add a bit more info to README #14

Add a bit more info to README

Add a bit more info to README #14

Workflow file for this run

name: Style and typing checks
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Lint with Black
run: |
poetry run black . --check
- name: Check import styling with isort
run: |
poetry run isort . --check
- name: Check types with mypy
run: |
poetry run mypy .