Skip to content

tooling: Enable ruff preview rules E203, E302, and E303. #707

tooling: Enable ruff preview rules E203, E302, and E303.

tooling: Enable ruff preview rules E203, E302, and E303. #707

Workflow file for this run

name: "🧪 Mock Tests"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
mock-tests:
runs-on: ubuntu-latest
steps:
- name: "⏳ Checkout repository"
uses: actions/checkout@v4
- name: "🐍 Set up Python"
uses: actions/setup-python@v5
with:
cache: "pip"
cache-dependency-path: pyproject.toml
python-version: "3.10"
- name: "🛠 Install dependencies"
run: python3 -m pip install -e ".[dev,test]"
- name: "🧪 Run mock tests"
run: make test-mock
- name: "📋 Validate examples"
run: make test-examples