From 305db5014ceaeb1e62e92eba9a922e9d29afe04a Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 26 Sep 2024 09:56:22 +0200 Subject: [PATCH] Add a `cargo machete` CI step --- .github/workflows/cargo_machete.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/cargo_machete.yml diff --git a/.github/workflows/cargo_machete.yml b/.github/workflows/cargo_machete.yml new file mode 100644 index 00000000000..dab6725553c --- /dev/null +++ b/.github/workflows/cargo_machete.yml @@ -0,0 +1,12 @@ +name: Cargo Machete + +on: [push, pull_request] + +jobs: + cargo-machete: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Machete + uses: bnjbvr/cargo-machete@main