We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d125a79 commit 63571ccCopy full SHA for 63571cc
.github/workflows/ci.yml
@@ -38,6 +38,21 @@ jobs:
38
- name: Build (with "json" feature)
39
run: cargo build --features json
40
41
+ # https://doc.rust-lang.org/nightly/cargo/guide/continuous-integration.html#verifying-latest-dependencies
42
+ latest_deps:
43
+ name: Latest Dependencies
44
+ runs-on: ubuntu-latest
45
+ continue-on-error: true
46
+ env:
47
+ CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
48
+ steps:
49
+ - uses: actions/checkout@v4
50
+ - run: rustup update stable && rustup default stable
51
+ - run: cargo update --verbose
52
+ - run: cargo build --verbose
53
+ - run: cargo build --verbose --features json
54
+ - run: cargo build --verbose --no-default-features
55
+
56
security-audit:
57
runs-on: ubuntu-latest
58
steps:
0 commit comments