We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9972c24 commit 81b9cf9Copy full SHA for 81b9cf9
.github/workflows/main.yml
@@ -31,7 +31,9 @@ jobs:
31
shell: bash
32
- run: cargo test --no-default-features
33
- run: cargo test
34
- - run: cargo run --manifest-path systest/Cargo.toml
+ # skip systest on nightly because it requires the extprim crate which fails to compile on nightly rust
35
+ - run: if [[ "${{ matrix.rust }}" != "nightly" ]]; then cargo run --manifest-path systest/Cargo.toml; fi
36
+ shell: bash
37
- run: cargo test --manifest-path git2-curl/Cargo.toml
38
39
rustfmt:
0 commit comments