feat(backend): 名字服务的client新增clb修改后端绑定主机转发权重接口,clb修改监听器转发方式,clb修改监听器会话… #176
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/**" | |
- "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 |