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 a310422
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bloat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Bloat size

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

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

0 comments on commit a310422

Please sign in to comment.