forked from PaddlePaddle/ERNIE-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (78 loc) · 2.44 KB
/
agent_ci.yaml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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