diff --git a/.github/workflows/cargo-bloat.yml b/.github/workflows/cargo-bloat.yml new file mode 100644 index 0000000..b45d60d --- /dev/null +++ b/.github/workflows/cargo-bloat.yml @@ -0,0 +1,19 @@ +name: cargo-bloat + +on: + push: + pull_request: + +jobs: + bloat: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - uses: orf/cargo-bloat-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}