forked from TencentBlueKing/blueking-dbm
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (48 loc) · 1.49 KB
/
python_code_check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python Lint
on:
workflow_dispatch:
push:
paths:
- "dbm-ui/backend/**"
- "dbm-ui/config/**"
- "dbm-ui/poetry.lock"
pull_request:
paths:
- "dbm-ui/backend/**"
- "dbm-ui/config/**"
- "dbm-ui/poetry.lock"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10.14
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8==7.1.1 black=="22.3.0"
- name: Lint with flake8
run: |
FLAKE8_RESULT=$(flake8 dbm-ui/backend --config=dbm-ui/backend/.flake8 || true)
if [ "$FLAKE8_RESULT" = "0" ]; then
echo "flake8 test passed"
else
echo -e "${FLAKE8_RESULT}"
echo "flake8 test failed, please check if you have install pre-commit"
exit 1
fi
- name: Format with black
run: |
BLACK_RESULT=$(black dbm-ui/backend 2>&1)
if [[ $BLACK_RESULT =~ "reformatted" ]]; then
echo -e "${BLACK_RESULT}"
echo "black test failed, please check if you have install pre-commit"
exit 1
else
echo "black test passed"
fi