Skip to content

Commit

Permalink
More Github workflow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Feb 1, 2024
1 parent 281e911 commit e852903
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: Build

on: [push, pull_request ]
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'tools/src/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
Expand All @@ -10,6 +20,7 @@ on: [push, pull_request ]
- '.github/workflows/build.yml'

jobs:

build:
name: Build libraries

Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: cppcheck

on: [push, pull_request ]
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/check.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/dox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ on:
- 'Doxyfile'
- '.github/workflows/dox.yml'

jobs:

apidocs:
name: Update API documentation

Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
name: Test

on: [push, pull_request ]
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'test/src/**'
- 'test/reference/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/test.yml'

pull_request:
paths:
- 'src/**'
- 'include/**'
Expand All @@ -10,7 +21,9 @@ on: [push, pull_request ]
- '*.mk'
- '.github/workflows/test.yml'


jobs:

test:
name: Test and coverage

Expand Down

0 comments on commit e852903

Please sign in to comment.