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

21 lines
428 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 integration tests only
run: pytest tests/integration/ -v --tb=long