Skip to content

feat: add first version with green tests #1

feat: add first version with green tests

feat: add first version with green tests #1

Workflow file for this run

name: Lint Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Configure Poetry to not use virtualenvs
run: poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install --no-root
- name: Run lint
run: make lint