-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (82 loc) · 2.39 KB
/
test.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
name: Unit tests
on: [push, pull_request]
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
cache: 'pip'
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Install pre-commit
run: pip install -c requirements.txt pre-commit
- name: Run pre-commit checks
run: pre-commit run --all-files
rust-tests:
strategy:
fail-fast: false
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- name: Run Rust tests
run: cargo test
python-tests:
strategy:
fail-fast: false
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install package
run: pip install .
- name: Run Python tests
run: pytest -v -ra
linux-wheels:
needs: [pre-commit, python-tests, rust-tests]
strategy:
fail-fast: false
matrix:
arch: [x86_64, aarch64]
python: [cp38]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
with:
platforms: arm64
if: matrix.arch != 'x86_64'
- id: rust-toolchain
uses: dtolnay/[email protected]
- uses: Swatinem/rust-cache@v2
- uses: pypa/[email protected]
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.python }}-manylinux*
RUST_VERSION: ${{ steps.rust-toolchain.outputs.name }}
- uses: actions/upload-artifact@v4
with:
name: wheel_linux-${{ matrix.arch }}-${{ matrix.python }}
path: ./wheelhouse/*.whl