Skip to content

fixup! build: Switch to poetry. Bump version. #15

fixup! build: Switch to poetry. Bump version.

fixup! build: Switch to poetry. Bump version. #15

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup python for ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install --only=dev
- name: Run style check
run: poetry run make style_check