-
Notifications
You must be signed in to change notification settings - Fork 52
41 lines (39 loc) · 1.02 KB
/
client_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
name: Client CI
on:
push:
paths:
- .github/workflows/client_*.yaml
- erniebot/**
pull_request:
paths:
- .github/workflows/client_*.yaml
- erniebot/**
jobs:
Lint:
name: Lint
runs-on: ubuntu-20.04
defaults:
run:
working-directory: erniebot
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
cache: pip # Caching pip dependencies
cache-dependency-path: |
setup.cfg
*-requirements.txt
- name: Install erniebot and dependencies
run: |
python -m pip install -r dev-requirements.txt
python -m pip install --upgrade pip
python -m pip install .
- name: Show make version
run: make --version
- name: Perform format checks on Python code
run: make format-check
- name: Lint Python code
run: make lint
- name: Perform type checks on Python code
run: make type-check