Skip to content

update github workflows #379

update github workflows

update github workflows #379

Workflow file for this run

name: Lint
on: [push]
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: make install
- name: ruff
run: make ruff-check
- name: isort
run: make isort-check