Files
confgen/.gitea/workflows/ci.yml
7000pctAUTO c3b2643512
Some checks failed
CI / test (push) Failing after 1s
Install build deps then package
2026-02-01 21:08:11 +00:00

13 lines
252 B
YAML

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