Skip to content

version: bump to 0.9.1 (#686) #229

version: bump to 0.9.1 (#686)

version: bump to 0.9.1 (#686) #229

Workflow file for this run

name: Linting
on:
push:
jobs:
linting-python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Dependencies
run: python -m pip install ruff==0.1.6 --no-cache-dir
- name: Run Ruff
run: make lint