Skip to content

Authentication, Logging, & Documentation #55

Authentication, Logging, & Documentation

Authentication, Logging, & Documentation #55

Workflow file for this run

name: Lint Python Code
on: [pull_request]
jobs:
lint_ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff check (no fixes)
run: |
ruff check . || exit 1 # Fail the job if ruff finds any issues