Skip to content

Commit 12d2f05

Browse files
committed
ci: tune when to run
1 parent a0e826b commit 12d2f05

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: CI
22
on:
33
workflow_dispatch:
44
pull_request:
5+
branches:
6+
- "**"
57
push:
8+
branches:
9+
- "master"
610

711
jobs:
812
test:

.github/workflows/fuzz.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: Fuzz Parser
22

33
on:
4-
push:
4+
pull_request:
5+
branches:
6+
- "**"
57
paths:
68
- src/scanner.c
7-
pull_request:
9+
push:
10+
branches:
11+
- "master"
812
paths:
913
- src/scanner.c
1014
workflow_dispatch:

0 commit comments

Comments
 (0)