Checking Unused Dependencies in a Rust Project with Github Actions
TL;DR
Below is the .github/workflows/udeps.yaml file I have come up with:
name: udeps
on: [push, pull_request]
jobs:
Test:
strategy:
matrix:
os: [ubuntu-latest]
# udeps requires nightly
rust: [nightly]
runs-...
erayerdin.com2 min read