Skip to content

fix: add llms.txt

fix: add llms.txt #69

name: Code checks
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
code_check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
poetry-version: ["latest"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry sync --no-interaction --no-ansi --with lint --with test --with dev
- name: Run lint
run: make lint
- name: Run tests
run: make test