Skip to content

Added GH icon to docs footer #47

Added GH icon to docs footer

Added GH icon to docs footer #47

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Lint (ruff)
run: |
ruff check .
ruff format --check .
- name: Tests (pytest)
run: |
pytest \
--cov=lfkit \
--cov-report=term-missing