-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (36 loc) · 1.04 KB
/
ci.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
on: [push, pull_request, workflow_dispatch]
jobs:
test-rust:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy, rustfmt
- name: Lint Rust implementation
run: cargo clippy
- name: Check Rust format
run: cargo fmt --check
- name: Test Rust implementation
run: cargo test --all-features
test-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install maturin
- run: pip install .
- name: Test Python implementation
run: python -m unittest test.py