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 8c5e5eb commit 84cea6dCopy full SHA for 84cea6d
.github/workflows/rust.yml
@@ -147,4 +147,21 @@ jobs:
147
- uses: actions/upload-artifact@v2
148
with:
149
name: cargo-espflash.exe
150
- path: target/x86_64-pc-windows-gnu/release/cargo-espflash.exe
+ path: target/x86_64-pc-windows-gnu/release/cargo-espflash.exe
151
+ msrv:
152
+ name: Check MSRV
153
+ runs-on: ubuntu-latest
154
+ steps:
155
+ - name: build dependencies
156
+ run: |
157
+ sudo apt-get install musl-tools libudev-dev
158
+ - uses: actions/checkout@v2
159
+ - uses: actions-rs/toolchain@v1
160
+ with:
161
+ profile: minimal
162
+ toolchain: 1.55
163
+ override: true
164
+ - uses: Swatinem/rust-cache@v1
165
+ - uses: actions-rs/cargo@v1
166
167
+ command: check
0 commit comments