fix: CI setup-python action
Some checks failed
CI / test (push) Failing after 7s

This commit is contained in:
2026-02-04 21:09:10 +00:00
parent a0043eaa21
commit ab9764ad39

View File

@@ -4,9 +4,13 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: | - name: Checkout
git clone --depth 1 https://7000pct.gitea.bloupla.net/7000pctAUTO/confsync.git /tmp/confsync uses: actions/checkout@v3
- run: | - name: Setup Python
curl -sS https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py uses: actions/setup-python@v4
python3 /tmp/get-pip.py --force-reinstall with:
pip --version python-version: '3.10'
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest confsync/tests/ -v