From 7977b933ebcbc1c009240cd3e6638a6ca6c1968b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:42:44 +0000 Subject: [PATCH] fix: Correct typo in CI workflow --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c8f580d..1a0aeb6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: [main] - pull_context: + pull_request: branches: [main] jobs: @@ -22,4 +22,4 @@ jobs: - name: Check package imports run: python -c "from json_to_openapi.cli import main; print('Import successful')" - name: Run tests - run: python -m pytest tests/ -v --tb=short 2>&1 || true + run: python -m pytest tests/ -v --tb=short