fix: restore working CI workflow from run 5972
Some checks failed
CI / test (push) Failing after 6s

This commit is contained in:
2026-02-04 20:38:34 +00:00
parent 6f89cecc18
commit 3162c13665

View File

@@ -1,17 +1,22 @@
name: CI
on: push, pull_request
on: [push, pull_request]
jobs:
ci:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install
run: pip install -e . pytest
run: |
pip install -e .
pip install pytest
- name: Test
run: pytest confsync/tests/ -v