ci/rust: Change MSRV to cargo check

No reason to codegen just to throw it away.  We could test here too,
but eh.
This commit is contained in:
Colin Walters 2022-06-23 14:44:33 -04:00
parent ed98a7904c
commit 001839b35f

View File

@ -47,8 +47,8 @@ jobs:
default: true default: true
- name: Cache Dependencies - name: Cache Dependencies
uses: Swatinem/rust-cache@ce325b60658c1b38465c06cc965b79baf32c1e72 uses: Swatinem/rust-cache@ce325b60658c1b38465c06cc965b79baf32c1e72
- name: cargo build - name: cargo check
run: cargo build --features=${{ env['CARGO_PROJECT_FEATURES'] }} run: cargo check --features=${{ env['CARGO_PROJECT_FEATURES'] }}
build-no-features: build-no-features:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel container: quay.io/coreos-assembler/fcos-buildroot:testing-devel