Skip to content

Bump matplotlib from 3.8.2 to 3.8.3 #44

Bump matplotlib from 3.8.2 to 3.8.3

Bump matplotlib from 3.8.2 to 3.8.3 #44

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches: [main]
jobs:
Test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: python -m pip install poetry
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Check poetry.lock
run: poetry lock --check
# - name: Type-check with Pyright
# run: poetry run pyright .
- name: Lint with ruff
run: poetry run ruff --output-format=github .
- name: Format with ruff
run: poetry run ruff format .