Skip to content

Commit

Permalink
First attempt @ memory report workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
magnmaeh committed Oct 3, 2024
1 parent f49bc6d commit 4ae2df7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/memory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Memory usage report

on:
push:
branches:
- main
pull_request:

permissions:
contents: read

jobs:
ci:
name: Report memory usage
runs-on: ubuntu-latest
steps:
- name: Test
run:
make test
- name: Combine
# TODO: Also add name of each test to the report itself
run:
cat build/test/*.size > build/report.txt
- name: Report
uses: actions/upload-artifact@v4
with:
name: report
path: build/report.txt

0 comments on commit 4ae2df7

Please sign in to comment.