mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 12:51:57 +00:00
26 lines
499 B
YAML
26 lines
499 B
YAML
# Run `cargo-unused-features` for finding out unused features
|
|
|
|
name: Cargo Unused Features
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_QUIET: true
|
|
|
|
jobs:
|
|
bloat:
|
|
name: Cargo Unused Features
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Cache
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Install cargo-unused-features
|
|
run: cargo install cargo-unused-features
|
|
|
|
- name: Run
|
|
run: unused-features analyze
|