Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO ee39700035
Some checks failed
CI / test (push) Failing after 1s
fix: minimal CI install only
2026-02-04 20:42:39 +00:00

16 lines
402 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: |
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git .
echo "Clone successful"
- run: |
python3 --version
- run: |
pip3 install pytest --quiet
- run: |
pip3 install -e . --quiet && echo "Install successful"