Skip to content

feat(simulator): prepare v3.0.0 stable release #2

feat(simulator): prepare v3.0.0 stable release

feat(simulator): prepare v3.0.0 stable release #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
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
run: pip install uv
- name: Install unit dependencies
run: uv sync --frozen
- name: Lint with ruff
run: uv run ruff check .
- name: Audit dependencies
run: uv run pip-audit --strict
- name: Run unit tests
run: make test-unit
integration:
runs-on: ubuntu-latest
needs: unit
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Run Docker-backed integration tests
run: make test-integration
e2e:
runs-on: ubuntu-latest
needs: unit
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Run Docker-backed end-to-end tests
run: make test-e2e