fix: Correct typo in CI workflow
Some checks failed
CI / test (push) Failing after 9s

This commit is contained in:
2026-02-01 05:42:44 +00:00
parent 3047f854a3
commit 7977b933eb

View File

@@ -3,7 +3,7 @@ name: CI
on: on:
push: push:
branches: [main] branches: [main]
pull_context: pull_request:
branches: [main] branches: [main]
jobs: jobs:
@@ -22,4 +22,4 @@ jobs:
- name: Check package imports - name: Check package imports
run: python -c "from json_to_openapi.cli import main; print('Import successful')" run: python -c "from json_to_openapi.cli import main; print('Import successful')"
- name: Run tests - name: Run tests
run: python -m pytest tests/ -v --tb=short 2>&1 || true run: python -m pytest tests/ -v --tb=short