Skip to content

Commit b5ec0eb

Browse files
committed
chore: configure CI paths filter
1 parent bbef9d6 commit b5ec0eb

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

.github/workflows/java.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ name: Java
66
on:
77
push:
88
branches: [ main ]
9+
paths:
10+
- 'java/**'
911
pull_request:
1012
branches: [ main ]
13+
paths:
14+
- 'java/**'
1115
workflow_dispatch:
1216

1317
jobs:

.github/workflows/python.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,26 @@ name: Python
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches:
9+
- main
10+
paths:
11+
- 'python/**'
912
pull_request:
10-
branches: [ main ]
13+
branches:
14+
- main
15+
paths:
16+
- 'python/**'
1117

1218
jobs:
13-
build:
19+
tests:
1420
runs-on: ubuntu-latest
1521

1622
steps:
1723
- uses: actions/checkout@v4
18-
- name: Set up Python 3.8
19-
uses: actions/setup-python@v2
24+
- name: Set up Python 3.12
25+
uses: actions/setup-python@v5
2026
with:
21-
python-version: 3.8
27+
python-version: 3.12
2228
- name: Test with pytest
2329
env:
2430
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}

.github/workflows/ruby.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3-
41
name: Ruby
52

63
on:

0 commit comments

Comments
 (0)