Files
mockapi/.gitea/workflows/ci.yml
7000pctAUTO 8d5cfe1ecd
Some checks failed
CI / test (push) Failing after 12s
Add Gitea Actions workflow: ci.yml
2026-03-22 22:12:37 +00:00

21 lines
400 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install package
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short