Skip to content

Explicitly install poetry-specified dependencies. #12

Explicitly install poetry-specified dependencies.

Explicitly install poetry-specified dependencies. #12

Workflow file for this run

name: Lint Python Code
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
lint: # The name of the job
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["pypy3.10", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: Install Python dependencies
run: python -m poetry install
- name: Run Ruff
run: python -m ruff check --output-format=github