Skip to content

Create LICENSE

Create LICENSE #3

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
static-release-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install lightweight dev tools
run: |
python -m pip install --upgrade pip
python -m pip install tomli pyyaml ruff pytest
- name: Validate release metadata and syntax
run: |
python scripts/validate_release.py
- name: Ruff syntax-focused check
run: |
ruff check . --select E9,F63,F7,F82
- name: Static tests
run: |
PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 pytest -q