1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Merge pull request #705 from KhaledEmaraDev/ci-cargo-bloat

Install and run cargo-bloat in CI
This commit is contained in:
Roman Zeyde 2022-04-23 20:55:03 +03:00 committed by GitHub
commit a8f9ef0ae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,18 @@ jobs:
command: clippy
args: -- -D warnings
- name: Install cargo-bloat
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-bloat
- name: Run cargo-bloat
uses: actions-rs/cargo@v1
with:
command: bloat
args: --locked --all --release --crates --time
integration:
name: Integration
runs-on: ubuntu-latest