mirror of
https://gitee.com/openharmony/third_party_rust_heck
synced 2024-11-23 07:10:27 +00:00
CI: Use MSRV for build job
This commit is contained in:
parent
2dbb21fb93
commit
f48ec3e0e9
15
.github/workflows/rust.yml
vendored
15
.github/workflows/rust.yml
vendored
@ -12,16 +12,23 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# Use MSRV for the build job
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: 1.32
|
||||
default: true
|
||||
profile: minimal
|
||||
- name: Build
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: build
|
||||
# Use stable for other jobs
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
default: true
|
||||
profile: minimal
|
||||
components: rustfmt, clippy
|
||||
- name: Build
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: build
|
||||
- name: Run tests
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
|
Loading…
Reference in New Issue
Block a user