fix: CI checkout action
Some checks failed
CI / test (push) Failing after 3s

This commit is contained in:
2026-02-04 20:59:10 +00:00
parent 7690164241
commit 17e78707d0

View File

@@ -4,17 +4,8 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Clone - uses: actions/checkout@v3
run: git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git . - name: Install and test
- name: Check Python
run: | run: |
which python3 pip install pytest
python3 --version pytest confsync/tests/ -v
which pip3
pip3 --version
- name: Install
run: |
pip3 install pytest
pytest --version
- name: Test
run: pytest confsync/tests/ -v || true