Skip to content

chore(deps)(deps): bump jsonschema from 4.25.1 to 4.26.0 #62

chore(deps)(deps): bump jsonschema from 4.25.1 to 4.26.0

chore(deps)(deps): bump jsonschema from 4.25.1 to 4.26.0 #62

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 6 * * *' # Daily at 6 AM UTC
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: πŸ” Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: πŸ“₯ Checkout Repository
uses: actions/checkout@v6
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
cache: 'pip'
- name: πŸ“¦ Install ruff
run: pip install ruff
- name: πŸ”§ Run Ruff Auto-fix (dry-run)
run: |
echo "Checking for auto-fixable issues..."
python -m ruff check . --fix --diff || true
- name: πŸ” Run Linter
run: |
echo "Running ruff linter..."
python -m ruff check .
test-fast:
name: πŸ§ͺ Fast Tests
runs-on: ubuntu-latest
timeout-minutes: 10
needs: lint
steps:
- name: πŸ“₯ Checkout Repository
uses: actions/checkout@v6
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
cache: 'pip'
- name: πŸ“¦ Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: πŸ§ͺ Run Fast Tests (excluding integration)
run: |
echo "Running fast tests (excluding integration tests)..."
python -m pytest tests/ -v -m "not integration" --tb=short
integration:
name: πŸ”— Integration Tests
runs-on: ubuntu-latest
timeout-minutes: 30
needs: [lint, test-fast]
# Only run integration tests on schedule or manual dispatch
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
steps:
- name: πŸ“₯ Checkout Repository
uses: actions/checkout@v6
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
cache: 'pip'
- name: πŸ“¦ Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: πŸ”— Run Integration Tests
run: |
echo "Running integration tests..."
python -m pytest tests/ -v -m "integration" --tb=short