From 23272a0c616221d5c2fa37cd5d4b9e6b8bb51229 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 21:10:12 +0000 Subject: [PATCH] fix: CI combined steps --- .gitea/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3dc2d40..10b59ba 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -4,13 +4,10 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Python - uses: actions/setup-python@v4 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: '3.10' - - name: Install pytest - run: pip install pytest - - name: Run tests - run: pytest confsync/tests/ -v + - run: | + pip install pytest + pytest confsync/tests/ -v