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 9ac7871
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/bloat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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
working-directory: examples/lakers-nrf52840
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9ac7871

Please sign in to comment.