Skip to content

hotfix: fix package name for version get #62

hotfix: fix package name for version get

hotfix: fix package name for version get #62

Workflow file for this run

name: Lint
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry==1.8.3
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "poetry"
- name: Install Python dependencies
run: poetry install --no-interaction --no-root
- name: Install Project
run: poetry install --no-interaction
- name: Ruff Format Check
run: poetry run ruff format --check
id: format
- name: Ruff Lint Check
run: poetry run ruff check --output-format=github
# Still run if format check fails
if: success() || steps.format.conclusion == 'failure'