Skip to content

Log temporal plots as tables (#33) #85

Log temporal plots as tables (#33)

Log temporal plots as tables (#33) #85

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run Ruff format check
run: |
poetry run ruff format . --check
- name: Run Ruff lint check
run: |
poetry run ruff check .