Skip to content

Bump version to 0.2.1 - Fix unused matplotlib import #48

Bump version to 0.2.1 - Fix unused matplotlib import

Bump version to 0.2.1 - Fix unused matplotlib import #48

Workflow file for this run

# Lint code with ruff
name: Lint Code
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Cache pip dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-lint-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-lint-
- name: Install ruff
run: |
python -m pip install --upgrade pip
python -m pip install ruff
- name: Lint with ruff
run: |
ruff check --output-format=github .