We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fbfb4a commit 8ecb8f5Copy full SHA for 8ecb8f5
.github/workflows/compile-examples.yml
@@ -77,3 +77,11 @@ jobs:
77
name: "arduino-beta:mbed"
78
sketch-paths: "${{ env.UNIVERSAL_SKETCH_PATHS }} ${{ matrix.additional-sketch-paths }}"
79
verbose: 'false'
80
+ enable-size-deltas-report: true
81
+
82
+ - name: Save memory usage change report as artifact
83
+ if: github.event_name == 'pull_request'
84
+ uses: actions/upload-artifact@v1
85
+ with:
86
+ name: size-deltas-reports
87
+ path: size-deltas-reports
.github/workflows/report-size-deltas.yml
@@ -0,0 +1,11 @@
1
+on:
2
+ schedule:
3
+ - cron: '*/5 * * * *'
4
5
+jobs:
6
+ report:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Comment size deltas reports to PRs
11
+ uses: arduino/actions/libraries/report-size-deltas@master
0 commit comments