Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO f0b00b2229
Some checks failed
CI / test (push) Failing after 5s
fix: standard CI with actions
2026-02-04 20:44:47 +00:00

15 lines
312 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: |
pip install -e .
pip install pytest
pytest confsync/tests/ -v