feat(service): test llm_client passed #79
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
name: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Check doc link | |
run: | | |
python .github/scripts/doc_link_checker.py --target README_en.md | |
python .github/scripts/doc_link_checker.py --target README.md | |
python -m pip install pylint interrogate | |
pylint huixiangdou || true | |
interrogate huixiangdou -v || true |