updated deps #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "latest" | |
| - name: Install dependencies | |
| run: uv sync | |
| - name: Run code quality checks (formatting, linting) | |
| run: | | |
| uv run ruff format --check . | |
| uv run isort --check-only . | |
| uv run ruff check . | |
| - name: Run unit tests | |
| run: uv run pytest tests/ -v -m "unit" | |
| # Note: Integration tests are not run in CI as they require DCI credentials | |
| # Run integration tests locally with: uv run pytest tests/ -v -m "integration" | |
| # Or use: bash scripts/run-checks.sh (runs all tests including integration) |