Skip to content

hotfix: add api prefix #25

hotfix: add api prefix

hotfix: add api prefix #25

Workflow file for this run

name: Linter Checking
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
- name: Ruff linter
run: |
poetry run ruff check src