From 72892661ad39c06e185727cff6de0811ba5df241 Mon Sep 17 00:00:00 2001 From: Eric Evenchick Date: Sat, 24 Aug 2024 22:25:17 -0400 Subject: [PATCH] remove old cargo action --- .github/workflows/rust.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 40218c6..20029f7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -9,7 +9,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install Build Deps - run: sudo apt install libusb-1.0-0-dev + run: sudo apt install libusb-1.0-0-dev libusb-1.0.0 - name: setup pkg-config run: export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig - name: Install Latest Nightly @@ -18,10 +18,7 @@ jobs: toolchain: nightly override: true - name: Run Cargo Build - uses: actions-rs/cargo@v1 - with: - command: build - args: --release --all-features + run: cargo build --release --all-features clippy_check: name: Clippy Check runs-on: ubuntu-latest