File tree 3 files changed +16
-9
lines changed
3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,12 @@ name: Java
6
6
on :
7
7
push :
8
8
branches : [ main ]
9
+ paths :
10
+ - ' java/**'
9
11
pull_request :
10
12
branches : [ main ]
13
+ paths :
14
+ - ' java/**'
11
15
workflow_dispatch :
12
16
13
17
jobs :
Original file line number Diff line number Diff line change @@ -5,20 +5,26 @@ name: Python
5
5
6
6
on :
7
7
push :
8
- branches : [ main ]
8
+ branches :
9
+ - main
10
+ paths :
11
+ - ' python/**'
9
12
pull_request :
10
- branches : [ main ]
13
+ branches :
14
+ - main
15
+ paths :
16
+ - ' python/**'
11
17
12
18
jobs :
13
- build :
19
+ tests :
14
20
runs-on : ubuntu-latest
15
21
16
22
steps :
17
23
- 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
20
26
with :
21
- python-version : 3.8
27
+ python-version : 3.12
22
28
- name : Test with pytest
23
29
env :
24
30
SAUCE_USERNAME : ${{ secrets.SAUCE_USERNAME }}
Original file line number Diff line number Diff line change 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
-
4
1
name : Ruby
5
2
6
3
on :
You can’t perform that action at this time.
0 commit comments