Skip to content

Commit

Permalink
Enable path selectors in workflows [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Nov 6, 2019
1 parent 84e3835 commit e0e24cc
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 46 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ name: C++

on:
push:
# paths:
# - 'cpp/**'
paths:
- 'cpp/**'
pull_request:
# paths:
# - 'cpp/**'
paths:
- 'cpp/**'

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ name: C#

on:
push:
# paths:
# - 'csharp/**'
paths:
- 'csharp/**'
pull_request:
# paths:
# - 'csharp/**'
paths:
- 'csharp/**'

jobs:
# the docker container fails to run because of the ubuntu host versions, see
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ name: Go

on:
push:
# paths:
# - 'go/**'
paths:
- 'go/**'
pull_request:
# paths:
# - 'go/**'
paths:
- 'go/**'

jobs:
docker:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ name: Java

on:
push:
# paths:
# - 'cpp/**'
# - 'java/**'
paths:
- 'cpp/**'
- 'java/**'
pull_request:
# paths:
# - 'cpp/**'
# - 'java/**'
paths:
- 'cpp/**'
- 'java/**'

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ name: NodeJS

on:
push:
# paths:
# - 'js/**'
paths:
- 'js/**'
pull_request:
# paths:
# - 'js/**'
paths:
- 'js/**'

jobs:
docker:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ name: Python

on:
push:
# paths:
# - 'cpp/**'
# - 'python/**'
paths:
- 'cpp/**'
- 'python/**'
pull_request:
# paths:
# - 'cpp/**'
# - 'python/**'
paths:
- 'cpp/**'
- 'python/**'

jobs:

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/r.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ name: R

on:
push:
# paths:
# - 'cpp/**'
# - 'r/**'
paths:
- 'cpp/**'
- 'r/**'
pull_request:
# paths:
# - 'cpp/**'
# - 'r/**'
paths:
- 'cpp/**'
- 'r/**'

jobs:

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ name: C Glib & Ruby

on:
push:
# paths:
# - 'cpp/**'
# - 'c_glib/**'
# - 'ruby/**'
paths:
- 'cpp/**'
- 'c_glib/**'
- 'ruby/**'
pull_request:
# paths:
# - 'cpp/**'
# - 'c_glib/**'
# - 'ruby/**'
paths:
- 'cpp/**'
- 'c_glib/**'
- 'ruby/**'

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ name: Rust

on:
push:
# paths:
# - 'rust/**'
paths:
- 'rust/**'
pull_request:
# paths:
# - 'rust/**'
paths:
- 'rust/**'

jobs:
docker:
Expand Down

0 comments on commit e0e24cc

Please sign in to comment.