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.
2 parents f1a8a87 + 9de9757 commit 21e2e5dCopy full SHA for 21e2e5d
.github/workflows/libssl.yaml
@@ -117,6 +117,21 @@ jobs:
117
- name: Check MATRIX.md is up-to-date
118
run: ./admin/matrix.py > MATRIX.md.new && diff -su MATRIX.md MATRIX.md.new
119
120
+ msrv:
121
+ name: MSRV
122
+ runs-on: ubuntu-latest
123
+ steps:
124
+ - name: Checkout sources
125
+ uses: actions/checkout@v5
126
+ with:
127
+ persist-credentials: false
128
+ - name: Install rust toolchain
129
+ uses: dtolnay/rust-toolchain@master
130
131
+ toolchain: 1.88
132
+ - name: Check build using MSRV
133
+ run: cargo check --locked --lib --all-features
134
+
135
clippy:
136
name: Clippy
137
runs-on: ubuntu-latest
0 commit comments