fix(backend): 修复分区鉴权异常问题 #5136 #4315
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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/**" | |
pull_request: | |
paths: | |
- "dbm-ui/backend/**" | |
- "dbm-ui/config/**" | |
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==5.0.4 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 |