Files
confgen/.gitea/workflows/ci.yml
7000pctAUTO 35e19afa1f
Some checks failed
CI / test (push) Failing after 3s
Add checkout action
2026-02-01 21:08:41 +00:00

14 lines
286 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: python3 --version
- run: pip install --upgrade pip setuptools wheel
- run: pip install -e .
- run: pytest tests/ -v --tb=short