Skip to content

Commit e2efde1

Browse files
committed
Add in-progress comments for performance tests on Linux, Windows, and macOS
1 parent f3ea97e commit e2efde1

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/perf-tests.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,36 @@ jobs:
3232
- name: Checkout
3333
uses: actions/checkout@v4
3434

35+
- name: Post In-Progress Comment (Linux)
36+
if: startsWith(matrix.os, 'ubuntu') && github.event_name == 'pull_request'
37+
uses: marocchino/sticky-pull-request-comment@v2
38+
with:
39+
header: perf-linux
40+
message: |
41+
## Performance Report (Linux) :hourglass_flowing_sand:
42+
43+
Running performance tests... Results will appear here when complete.
44+
45+
- name: Post In-Progress Comment (Windows)
46+
if: startsWith(matrix.os, 'windows') && github.event_name == 'pull_request'
47+
uses: marocchino/sticky-pull-request-comment@v2
48+
with:
49+
header: perf-windows
50+
message: |
51+
## Performance Report (Windows) :hourglass_flowing_sand:
52+
53+
Running performance tests... Results will appear here when complete.
54+
55+
- name: Post In-Progress Comment (macOS)
56+
if: startsWith(matrix.os, 'macos') && github.event_name == 'pull_request'
57+
uses: marocchino/sticky-pull-request-comment@v2
58+
with:
59+
header: perf-macos
60+
message: |
61+
## Performance Report (macOS) :hourglass_flowing_sand:
62+
63+
Running performance tests... Results will appear here when complete.
64+
3565
- name: Set Python to PATH
3666
uses: actions/setup-python@v5
3767
with:

0 commit comments

Comments
 (0)