Skip to content

Improve repo presentation and add CI/release hygiene #1

Improve repo presentation and add CI/release hygiene

Improve repo presentation and add CI/release hygiene #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: Tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package and dev extras
run: python -m pip install --upgrade pip && python -m pip install -e ".[dev]"
- name: Run test suite
run: python -m pytest -q
advisory-quality:
name: Advisory Quality Checks
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install package and dev extras
run: python -m pip install --upgrade pip && python -m pip install -e ".[dev]"
- name: Ruff
run: python -m ruff check src tools
- name: Mypy
run: python -m mypy src/llama_suite