From 1e99bfeaa513d6e8f46b201d19283ac644c633a5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:23:26 +0000 Subject: [PATCH] Use hardcoded repo URL --- .gitea/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index cdf05bc..0a84e9c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,11 +7,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - run: | - git clone https://gitea.com/$GITEA_REPO_NAME . + run: git clone https://gitea.com/7000pctAUTO/json-to-openapi . - name: Install - run: | - pip install -e . pytest + run: pip install -e . pytest - name: Test - run: | - pytest tests/ -v + run: pytest tests/ -v