Skip to content

Commit

Permalink
ci: Add a first draft of the CI cargo bloat tool
Browse files Browse the repository at this point in the history
  • Loading branch information
malishav committed Nov 2, 2024
1 parent a11fe34 commit ba79ca4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/bloat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Bloat size

on:
push:
branches: [main]
tags: 'v*'
pull_request:
workflow_dispatch:

jobs:
compute-size:
runs-on: ubuntu-latest
steps:
- name: Run cargo bloat
uses: orf/cargo-bloat-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ba79ca4

Please sign in to comment.