Skip to content

Adjust how unit tests are referencing module #122

Adjust how unit tests are referencing module

Adjust how unit tests are referencing module #122

Workflow file for this run

name: Ruff Linter and Formatter
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo Code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff Check
run: ruff check --output-format=github .
- name: Run Ruff Formatter
run: ruff format --check .