We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9bc0e9 commit b508a56Copy full SHA for b508a56
2 files changed
.github/workflows/ci.yml
@@ -37,3 +37,22 @@ jobs:
37
38
- name: Run rustfmt
39
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
51
+ - name: Install latest nextest release
52
+ uses: taiki-e/install-action@nextest
53
+ - name: Fetch cache
54
+ uses: Swatinem/rust-cache@v2
55
56
+ - name: Run tests
57
+ run: cargo nextest run
58
src/algorithms/galois.rs
@@ -390,6 +390,7 @@ fn test_compute_galois_closure() {
390
}
391
392
#[test]
393
+#[ignore = "slow"]
394
fn test_compute_galois_group() {
395
let ZZ = BigIntRing::RING;
396
let ZZX = DensePolyRing::new(&ZZ, "X");
0 commit comments