1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Add a cargo machete CI step (#5171)

`cargo machete` looks for unused dependencies
This commit is contained in:
Emil Ernerfeldt
2024-09-26 10:24:37 +02:00
committed by GitHub
parent 92adfa57dc
commit a72ebbeafc
9 changed files with 27 additions and 5 deletions

12
.github/workflows/cargo_machete.yml vendored Normal file
View File

@@ -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