File tree Expand file tree Collapse file tree 3 files changed +40
-4
lines changed
Expand file tree Collapse file tree 3 files changed +40
-4
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,10 @@ name: Memory Leaks
22
33on :
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'
Original file line number Diff line number Diff line change 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."'
Original file line number Diff line number Diff line change 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."'
You can’t perform that action at this time.
0 commit comments