Skip to content

Commit

Permalink
Fix status checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroIntensity committed Dec 22, 2024
1 parent 0df42ba commit 75c0747
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/memory_leak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ name: Memory Leaks

on:
push:
branches:
- master
paths:
- 'src/_pyawaitable/**'
- '.github/workflows/memory_leak.yml'
pull_request:
branches:
- master
paths:
- 'src/_pyawaitable/**'
- '.github/workflows/memory_leak.yml'
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/memory_leak_noop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Memory Leaks

on:
push:
paths-ignore:
- 'src/_pyawaitable/**'
- '.github/workflows/memory_leak.yml'
pull_request:
paths-ignore:
- 'src/_pyawaitable/**'
- '.github/workflows/memory_leak.yml'

jobs:
memory-leaks:
name: Check for memory leaks and errors
runs-on: ubuntu-latest

steps:
- run: 'echo "This change does not affect C code."'
21 changes: 21 additions & 0 deletions .github/workflows/test_noop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tests

on:
push:
paths:
- 'tests/**'
- 'src/**'
- '.github/workflows/tests.yml'
pull_request:
paths:
- 'tests/**'
- 'src/**'
- '.github/workflows/tests.yml'

jobs:
run-tests:
name: Tests
runs-on: ubuntu-latest

steps:
- run: 'echo "This change does not affect tests."'

0 comments on commit 75c0747

Please sign in to comment.