Skip to content

Debug path general config #123

Debug path general config

Debug path general config #123

Workflow file for this run

name: "Lint"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
black-isort-flake8:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.11.3]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Linting
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
cache: "pip"
- name: Install dependencies [pip]
run: |
pip install black==23.7.0 isort==5.12.0
- name : Linting [black, isort]
run: |
black . --check
isort --profile black -o wandb --check .