From 3162c136654323f6cffd8612e115bf3624480d29 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:38:34 +0000 Subject: [PATCH] fix: restore working CI workflow from run 5972 --- .gitea/workflows/ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2f0b4ec..1812ceb 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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