Skip to content

Commit 0872132

Browse files
committed
2 parents 3e9521c + b8be8dc commit 0872132

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/framework_flake8_and_black.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
pip install flake8 black
2525
- name: Lint with flake8
2626
run: |
27-
flake8 bk-plugin-framework/bk_plugin_framework
27+
cd bk-plugin-framework
28+
flake8 bk_plugin_framework
2829
- name: Format with black
2930
run: |
30-
black bk-plugin-framework/bk_plugin_framework
31+
cd bk-plugin-framework
32+
black bk_plugin_framework

.github/workflows/runtime_flake8_and_black.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
pip install flake8 black
2525
- name: Lint with flake8
2626
run: |
27-
flake8 runtime/bk-plugin-runtime/bk_plugin_runtime
27+
cd runtime/bk-plugin-runtime/
28+
flake8 bk_plugin_runtime
2829
- name: Format with black
2930
run: |
30-
black runtime/bk-plugin-runtime/bk_plugin_runtime
31+
cd runtime/bk-plugin-runtime/
32+
black bk_plugin_runtime

0 commit comments

Comments
 (0)