Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO 3162c13665
Some checks failed
CI / test (push) Failing after 6s
fix: restore working CI workflow from run 5972
2026-02-04 20:38:34 +00:00

23 lines
447 B
YAML

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