Skip to content

(feat) added auto handling of traditional pin and testing #84

(feat) added auto handling of traditional pin and testing

(feat) added auto handling of traditional pin and testing #84

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: Setup Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Lint/Check format with Ruff
run: |
ruff check . --output-format=github
- name: Check formatting with Ruff
run: |
ruff format --check .