Skip to content

ci: fixes

ci: fixes #50

Workflow file for this run

name: Lint
on:
workflow_dispatch:
push:
env:
PYTHON_VERSION: '3.12'
jobs:
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Set up Poetry environment
env:
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
run: |
poetry env use ${PYTHON_VERSION}
- name: Install Python dependencies
run: |
pip install poetry
make install
- name: Run Flake8
run: |
poetry run flake8