Skip to content

Add detailed documentation outlining the generated project structure … #2

Add detailed documentation outlining the generated project structure …

Add detailed documentation outlining the generated project structure … #2

Workflow file for this run

# GitHub Actions CI workflow
name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest
- name: Run linting
run: poetry run ruff check fastkit/ tests/
- name: Run type checking
run: poetry run mypy fastkit/