Skip to content

ci: Use Node.js 22 for semantic-release compatibility. #342

ci: Use Node.js 22 for semantic-release compatibility.

ci: Use Node.js 22 for semantic-release compatibility. #342

Workflow file for this run

name: "🧪 Mock Tests"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
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