Skip to content

Chore/scan tunning parameters #407

Chore/scan tunning parameters

Chore/scan tunning parameters #407

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff on changed files
run: |
make lint