Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO 44cca483dd
Some checks failed
CI / test (push) Failing after 1s
fix: CI with simpler steps
2026-02-04 20:41:35 +00:00

21 lines
489 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
- name: Check Python
run: |
python3 --version
pip3 --version
- name: Install
run: |
pip3 install -e . pytest
- name: Test
run: |
ls confsync/tests/
pytest confsync/tests/ -v || true