We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82c787d commit c7231fcCopy full SHA for c7231fc
1 file changed
.github/workflows/main.yaml
@@ -26,7 +26,7 @@ jobs:
26
run: rustup update nightly --no-self-update && rustup default nightly
27
- uses: Swatinem/rust-cache@v2
28
- name: Build and run tests
29
- run: cargo test
+ run: cargo test --workspace
30
31
msrv:
32
name: Check the MSRV
@@ -46,7 +46,10 @@ jobs:
46
- name: Install Rust
47
run: rustup update "$MSRV" --no-self-update && rustup default "$MSRV"
48
49
- - run: cargo build --package rustc_apfloat
+ - run: |
50
+ # strip the fuzz crate that uses a newer edition
51
+ sed '/members =/d' Cargo.toml
52
+ cargo build --package rustc_apfloat
53
54
rustfmt:
55
name: Rustfmt
0 commit comments