File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
-
15
- runs-on : ubuntu-latest
16
-
14
+ name : Build and test
15
+ runs-on : ${{ matrix.os }}
16
+ strategy :
17
+ fail-fast : false
18
+ matrix :
19
+ os : [ubuntu-latest, windows-latest, macos-latest]
20
+ rust : [stable]
21
+ python : ['3.13']
17
22
steps :
18
23
- uses : actions/checkout@v4
24
+ - name : Setup Rust
25
+ uses : actions-rs/toolchain@v1
26
+ with :
27
+ profile : minimal
28
+ toolchain : ${{ matrix.rust }}
29
+ override : true
19
30
- name : Build
20
31
run : cargo build --verbose
21
32
- name : Run tests
22
33
run : cargo test --verbose
34
+ - name : Run tests on Release
35
+ run : cargo test --release --verbose
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ edition = "2024"
5
5
6
6
[dev-dependencies ]
7
7
proptest = " 1.6.0"
8
- pyo3 = " 0.23.4 "
8
+ pyo3 = { version = " 0.24 " , features = " abi3 " }
You can’t perform that action at this time.
0 commit comments