Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/isort_checker.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: black-format-check
name: isort-check

on: [push, pull_request, workflow_dispatch]

env:
#If STRICT is set to true, it will fail on black check fail
#If STRICT is set to true, it will fail on isort check fail
STRICT: false

jobs:
Expand All @@ -22,7 +22,7 @@ jobs:
with:
python-version: "3.7"

- name: Install black
- name: Install isort
run: |
pip install isort

Expand Down