feat(simulator): prepare v3.0.0 stable release #2
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] | |
| 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 |