Skip to content

Bump the python group across 1 directory with 6 updates #59

Bump the python group across 1 directory with 6 updates

Bump the python group across 1 directory with 6 updates #59

Workflow file for this run

name: Test Suite
on:
push:
branches:
- main
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ruff:
timeout-minutes: 5
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx install poetry pyright
- run: poetry config virtualenvs.in-project true
- uses: actions/setup-python@v4
with:
cache: poetry
python-version: "3.11"
- run: poetry install
- name: Ruff lint check
run: poetry run ruff check .
- name: Ruff format check
run: poetry run ruff format --check .
- name: Run pyright
run: pyright --venvpath ./.venv/