-
Notifications
You must be signed in to change notification settings - Fork 0
115 lines (93 loc) · 2.96 KB
/
checks.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Checks
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
name: Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install linters
run: make setup-format RUN_GLOBAL=1
- name: Run Format Checks
run: make check-format RUN_GLOBAL=1
check-deps:
name: Check dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Poetry Plugins
run: |
poetry self add poetry-plugin-export
poetry self show plugins
- name: Check poetry.lock and .github/dev-requirements.txt
run: make check-dep-dev
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install -r .github/dev-requirements.txt --system --no-deps # we already should have all dependencies exported into .github/dev-requirements.txt
- name: Install torch (special)
run: uv pip install torch==2.3.1+cpu --system --extra-index-url https://download.pytorch.org/whl/cpu
- name: Install zanj (local)
run: uv pip install . --system
test:
name: Test and Lint
runs-on: ubuntu-latest
strategy:
matrix:
versions:
- python: "3.8"
torch: "1.13.1"
- python: "3.9"
torch: "1.13.1"
- python: "3.10"
torch: "1.13.1"
- python: "3.10"
torch: "2.3.1"
- python: "3.11"
torch: "2.3.1"
- python: "3.12"
torch: "2.3.1"
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.versions.python }}
- name: Install uv
run: pip install uv
- name: Install dependencies
# install torch first to avoid pytorch index messing things up
run: |
uv pip install -r .github/dev-requirements.txt --system --no-deps
uv pip install torch==${{ matrix.versions.torch}}+cpu --system --extra-index-url https://download.pytorch.org/whl/cpu
- name: Install zanj
run: uv pip install . --system
- name: tests
run: make test RUN_GLOBAL=1
# - name: tests in strict mode
# # TODO: until zanj ported to 3.8 and 3.9
# if: ${{ matrix.versions.python != '3.8' && matrix.versions.python != '3.9' }}
# run: make test WARN_STRICT=1 RUN_GLOBAL=1
- name: check typing
run: make typing RUN_GLOBAL=1