From 16afba81d0755397772627ad2caea2c22602cc7c Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Mon, 21 Oct 2024 21:46:52 -0600 Subject: [PATCH] catch up to dpdk-sys a bit --- .github/workflows/check-developer-experience.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-developer-experience.yml b/.github/workflows/check-developer-experience.yml index 6c7b1039..3ecd5754 100644 --- a/.github/workflows/check-developer-experience.yml +++ b/.github/workflows/check-developer-experience.yml @@ -1,4 +1,3 @@ -name: Follow README.md on: [ push, pull_request ] permissions: @@ -30,12 +29,19 @@ jobs: just-version: ${{matrix.just_version}} - name: install rustup uses: dtolnay/rust-toolchain@stable + with: + toolchain: ${{matrix.rust_toolchain}} + targets: ${{matrix.target}} - name: Checkout uses: actions/checkout@v4 - name: refresh-compile-env run: just --yes refresh-compile-env - run: just --yes fake-nix - name: build - run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=${{matrix.target}} + run: cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=${{matrix.target}} - name: test + run: cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=${{matrix.target}} + - name: just build + run: just cargo +${{matrix.rust_toolchain}} build --profile=${{matrix.profile}} --target=${{matrix.target}} + - name: just test run: just cargo +${{matrix.rust_toolchain}} test --profile=${{matrix.profile}} --target=${{matrix.target}}