-
Notifications
You must be signed in to change notification settings - Fork 4.5k
72 lines (64 loc) · 1.72 KB
/
py.check.yaml
File metadata and controls
72 lines (64 loc) · 1.72 KB
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
name: Checks
on:
push:
branches:
- master
paths:
- "python/**/*.py"
- ".github/workflows/py.check.yaml"
pull_request:
types: [opened, synchronize]
paths:
- "python/**/*.py"
- ".github/workflows/py.check.yaml"
jobs:
common-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 50
- name: Setup Python with UV
id: setup-python
uses: ./.github/actions/setup-python-uv
- name: nox cache
id: nox-cache
uses: actions/cache@v4
with:
path: python/.nox
key: nox-${{ hashFiles('pyproject.toml') }}-py${{ steps.setup-python.outputs.python-version }}
restore-keys: |
nox-
- name: Mypy cache
id: mypy-cache
uses: actions/cache@v4
with:
path: python/.mypy_cache
key: mypy-${{ hashFiles('pyproject.toml') }}-py${{ steps.setup-python.outputs.python-version }}
restore-keys: |
mypy-
- name: Ruff cache
id: ruff-cache
uses: actions/cache@v4
with:
path: python/.ruff_cache
key: ruff-${{ hashFiles('pyproject.toml') }}-py${{ steps.setup-python.outputs.python-version }}
restore-keys: |
ruff-
- name: Install deps
run: |
cd python/
make env
- name: Lint and type checks
shell: bash
run: |
cd python/
uv run nox -s chk
- name: Type inference tests
shell: bash
run: |
cd python/
uv run nox -s type_inference
env:
COMPOSIO_API_KEY: ${{ secrets.COMPOSIO_API_KEY }}