chore(deps): bump matplotlib from 3.9.2 to 3.10.3 #194
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: | |
| - master | |
| - release | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Lint with ruff | |
| runs-on: arc-runners-small | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PATH | |
| run: echo "/home/runner/.local/bin" >> $GITHUB_PATH | |
| - uses: ./.github/workflows/actions/prepare | |
| with: | |
| python-version: "3.11" | |
| - name: Check files using the ruff formatter | |
| run: poetry run ruff check --fix --unsafe-fixes --preview . | |
| shell: bash | |
| mypy: | |
| name: Static Type Checking | |
| runs-on: arc-runners-small | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PATH | |
| run: echo "/home/runner/.local/bin" >> $GITHUB_PATH | |
| - uses: ./.github/workflows/actions/prepare | |
| with: | |
| python-version: "3.11" | |
| - name: Mypy | |
| run: poetry run mypy . | |
| shell: bash | |
| test: | |
| name: Run unit test on ${{ matrix.os }} with Python ${{ matrix.python-version }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # Self-hosted runner | |
| - os: arc-runners-small | |
| python-version: "3.10" | |
| - os: arc-runners-small | |
| python-version: "3.11" | |
| - os: arc-runners-small | |
| python-version: "3.12" | |
| # Windows | |
| - os: windows-latest | |
| python-version: "3.10.11" | |
| - os: windows-latest | |
| python-version: "3.11" | |
| - os: windows-latest | |
| python-version: "3.12" | |
| # macOS (arm64) | |
| - os: macos-14 | |
| python-version: "3.11" | |
| - os: macos-14 | |
| python-version: "3.12" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PATH | |
| run: echo "/home/runner/.local/bin" >> $GITHUB_PATH | |
| - uses: ./.github/workflows/actions/prepare | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run Tests | |
| run: poetry run python tests/testing.py | |
| shell: bash |