Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO 23272a0c61
Some checks failed
CI / test (push) Failing after 7s
fix: CI combined steps
2026-02-04 21:10:12 +00:00

14 lines
285 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 pytest
pytest confsync/tests/ -v