Skip to content

Commit 75c0747

Browse files
committed
Fix status checks.
1 parent 0df42ba commit 75c0747

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

.github/workflows/memory_leak.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ name: Memory Leaks
22

33
on:
44
push:
5-
branches:
6-
- master
75
paths:
86
- 'src/_pyawaitable/**'
97
- '.github/workflows/memory_leak.yml'
108
pull_request:
11-
branches:
12-
- master
139
paths:
1410
- 'src/_pyawaitable/**'
1511
- '.github/workflows/memory_leak.yml'
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Memory Leaks
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'src/_pyawaitable/**'
7+
- '.github/workflows/memory_leak.yml'
8+
pull_request:
9+
paths-ignore:
10+
- 'src/_pyawaitable/**'
11+
- '.github/workflows/memory_leak.yml'
12+
13+
jobs:
14+
memory-leaks:
15+
name: Check for memory leaks and errors
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- run: 'echo "This change does not affect C code."'

.github/workflows/test_noop.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
paths:
6+
- 'tests/**'
7+
- 'src/**'
8+
- '.github/workflows/tests.yml'
9+
pull_request:
10+
paths:
11+
- 'tests/**'
12+
- 'src/**'
13+
- '.github/workflows/tests.yml'
14+
15+
jobs:
16+
run-tests:
17+
name: Tests
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- run: 'echo "This change does not affect tests."'

0 commit comments

Comments
 (0)