-
Notifications
You must be signed in to change notification settings - Fork 18
141 lines (127 loc) · 3.85 KB
/
CI.yml
File metadata and controls
141 lines (127 loc) · 3.85 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
env:
MIN_PYTHON_VERSION: "3.10"
defaults:
run:
# Prevents windows runners from running on powershell
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "${{ env.MIN_PYTHON_VERSION }}"
- name: Set up rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Set up rustfmt
run: rustup component add rustfmt
- name: install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies and lint
run: |
make install
make lint
check-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Set up rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: install uv
uses: astral-sh/setup-uv@v7
- name: Check documentation
run: |
make install
make doc
# GitHub provides only x86_64 runners, so we cannot test on arm architecture
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
os: ["ubuntu-latest", "macos-14", "windows-latest"]
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Set up rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies and test
run: |
make install
make test
- name: Test with pandas<3
run: |
uv pip install "pandas<3"
make test-python
check-wheel-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Only testing the build on the smallest supported Python version for abi3 wheels
python-version: ["3.10", "3.14t"]
os: ["ubuntu-latest", "macos-14", "windows-latest"]
architecture: [x86-64, aarch64]
exclude:
- os: windows-latest
architecture: aarch64
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Set Rust target
id: target
if: matrix.os != 'windows-latest'
run: |
TARGET=${{ matrix.os == 'macos-14' && (matrix.architecture == 'aarch64' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin') || (matrix.architecture == 'aarch64' && 'aarch64-unknown-linux-gnu' || null) }}
echo "target=$TARGET" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: build (fast)
uses: PyO3/maturin-action@v1
with:
manylinux: auto
command: build
args: "-o dist -i python${{ matrix.python-version }}"
target: ${{ steps.target.outputs.target }}
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: "wheels-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ matrix.architecture }}"
path: dist
check-sdist-build:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: build sdist
uses: PyO3/maturin-action@v1
with:
manylinux: auto
command: sdist
args: "-o dist"
- name: upload sdist
uses: actions/upload-artifact@v7
with:
name: sdist
path: dist