File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ [profile .ci ]
2+ # Do not cancel the test run on the first failure.
3+ fail-fast = false
Original file line number Diff line number Diff line change 3737
3838 - name : Run rustfmt
3939 run : cargo fmt --check
40+
41+ tests :
42+ name : Tests
43+ runs-on : ubuntu-latest
44+
45+ steps :
46+ - uses : actions/checkout@v4
47+
48+ - name : Install Rust toolchain
49+ uses : actions-rs/toolchain@v1
50+ with :
51+ toolchain : nightly-2026-03-01
52+ override : true
53+
54+ - name : Install latest nextest release
55+ uses : taiki-e/install-action@nextest
56+ - name : Fetch cache
57+ uses : Swatinem/rust-cache@v2
58+
59+ - name : Run tests
60+ run : cargo nextest run --profile ci
61+
Original file line number Diff line number Diff line change @@ -390,6 +390,7 @@ fn test_compute_galois_closure() {
390390}
391391
392392#[ test]
393+ #[ ignore = "slow" ]
393394fn test_compute_galois_group ( ) {
394395 let ZZ = BigIntRing :: RING ;
395396 let ZZX = DensePolyRing :: new ( & ZZ , "X" ) ;
You can’t perform that action at this time.
0 commit comments