Overhaul autotools stuff across projects with reusable macros #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo Bloat | |
on: [ "pull_request" ] | |
jobs: | |
cargo_bloat: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v1 | |
- name: Run cargo bloat | |
uses: orf/cargo-bloat-action@v1 | |
with: | |
token: ${{ github.token }} |