Skip to content

Add ruff domain to qa topic. #375

Add ruff domain to qa topic.

Add ruff domain to qa topic. #375

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Dependencies
run: |
pip install black isort
- name: black
run: |
black --check src
- name: isort
run: |
isort --check src