Skip to content

updating documentation #30

updating documentation

updating documentation #30

Workflow file for this run

name: Linting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
- name: install dependencies
run: poetry install
- name: flake8
run: poetry run flake8