Skip to content

Commit 1479e21

Browse files
authored
Merge pull request #23 from ohad-agadi/ohad/test_ci
test ci
2 parents 6c33766 + 8bbc452 commit 1479e21

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

.config/nextest.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[profile.ci]
2+
# Do not cancel the test run on the first failure.
3+
fail-fast = false

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,25 @@ jobs:
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+

src/algorithms/galois.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ fn test_compute_galois_closure() {
390390
}
391391

392392
#[test]
393+
#[ignore = "slow"]
393394
fn test_compute_galois_group() {
394395
let ZZ = BigIntRing::RING;
395396
let ZZX = DensePolyRing::new(&ZZ, "X");

0 commit comments

Comments
 (0)