Skip to content

Commit 9eeb0e0

Browse files
committed
Add a name.
1 parent 75c0747 commit 9eeb0e0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/memory_leak_noop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- run: 'echo "This change does not affect C code."'
19+
- name: "No-op the leak tests"
20+
run: 'echo "This change does not affect C code."'

.github/workflows/test_noop.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Tests
22

33
on:
44
push:
5-
paths:
5+
paths-ignore:
66
- 'tests/**'
77
- 'src/**'
88
- '.github/workflows/tests.yml'
99
pull_request:
10-
paths:
10+
paths-ignore:
1111
- 'tests/**'
1212
- 'src/**'
1313
- '.github/workflows/tests.yml'
@@ -18,4 +18,5 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- run: 'echo "This change does not affect tests."'
21+
- name: "No-op the tests"
22+
run: 'echo "This change does not affect tests."'

0 commit comments

Comments
 (0)