fix: CI combined steps
Some checks failed
CI / test (push) Failing after 7s

This commit is contained in:
2026-02-04 21:10:12 +00:00
parent ab9764ad39
commit 23272a0c61

View File

@@ -4,13 +4,10 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - uses: actions/checkout@v3
uses: actions/checkout@v3 - uses: actions/setup-python@v4
- name: Setup Python
uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: '3.10'
- name: Install pytest - run: |
run: pip install pytest pip install pytest
- name: Run tests pytest confsync/tests/ -v
run: pytest confsync/tests/ -v