Skip to content

Commit

Permalink
Trigger workflows on pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Sep 17, 2024
1 parent 3740214 commit c6ef9ef
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ on:
- '*.mk'
- '.github/workflows/build.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
- 'tools/src/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'

jobs:

build:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ on:
- 'Makefile'
- '*.mk'
- '.github/workflows/check.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/check.yml'

jobs:

Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/dox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@ on:
- 'Doxyfile'
- '*.md'
- '.github/workflows/dox.yml'


pull_request:
paths:
- 'src/**'
- 'include/**'
- 'css/**'
- 'resources/**'
- 'Doxyfile'
- '*.md'
- '.github/workflows/dox.yml'
jobs:

apidocs:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
- 'examples/**'
- '.github/workflows/example.yml'

pull_request:
paths:
- 'examples/**'
- '.github/workflows/example.yml'

jobs:

build:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ on:
- 'test/Makefile'
- '.github/workflows/test.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
- 'test/src/**'
- 'test/reference/**'
- 'Makefile'
- '*.mk'
- 'test/Makefile'
- '.github/workflows/test.yml'

jobs:

test:
Expand Down

0 comments on commit c6ef9ef

Please sign in to comment.