add fact_check_agent #81
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: Agent CI | |
on: | |
push: | |
paths: | |
- .github/workflows/agent_*.yaml | |
- erniebot-agent/** | |
- erniebot/** | |
pull_request: | |
paths: | |
- .github/workflows/agent_*.yaml | |
- erniebot-agent/** | |
- erniebot/** | |
jobs: | |
Lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
cache: pip # Caching pip dependencies | |
cache-dependency-path: | | |
erniebot/setup.cfg | |
erniebot-agent/setup.cfg | |
erniebot-agent/*-requirements.txt | |
erniebot-agent/tests/requirements.txt | |
- name: Install erniebot-agent and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r erniebot-agent/dev-requirements.txt | |
python -m pip install ./erniebot ./erniebot-agent[all] | |
- name: Show make version | |
run: make --version | |
- name: Perform format checks on Python code | |
run: make format-check | |
working-directory: erniebot-agent | |
- name: Lint Python code | |
run: make lint | |
working-directory: erniebot-agent | |
- name: Perform type checks on Python code | |
run: make type-check | |
working-directory: erniebot-agent | |
UnitTest: | |
name: Unit Test | |
runs-on: ubuntu-20.04 | |
permissions: | |
pull-requests: write | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
cache: pip # Caching pip dependencies | |
cache-dependency-path: | | |
erniebot/setup.cfg | |
erniebot-agent/setup.cfg | |
erniebot-agent/*-requirements.txt | |
erniebot-agent/tests/requirements.txt | |
- name: Install erniebot-agent and dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r erniebot-agent/tests/requirements.txt | |
python -m pip install ./erniebot | |
python -m pip install ./erniebot-agent[all] | |
- name: Show make version | |
run: make --version | |
- name: Run unit tests | |
run: make coverage | |
working-directory: erniebot-agent | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: erniebot-agent | |
name: erniebot-agent |