File tree Expand file tree Collapse file tree 5 files changed +27
-48
lines changed
Expand file tree Collapse file tree 5 files changed +27
-48
lines changed Original file line number Diff line number Diff line change 1414 type : string
1515 default : ' 3.11'
1616
17- concurrency :
18- group : ${{ github.workflow }}-${{ github.ref }}
19- cancel-in-progress : true
17+
2018
2119jobs :
2220 build-and-test :
3937 - name : Build & Test (Java)
4038 run : mvn -B clean verify
4139
40+
41+
4242 # Python
4343 - name : Set up Python
4444 uses : actions/setup-python@v6
4848
4949 - name : Run Python Unit Tests
5050 run : |
51- chmod +x test/python_setup/setup_python_env.sh
52- chmod +x test/python_setup/cleanup_python_env.sh
53- chmod +x test/python_unit_tests/run_python_unit_tests.sh
5451 test/python_unit_tests/run_python_unit_tests.sh
52+
53+
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - ' **'
7+ pull_request :
8+
9+ concurrency :
10+ # This ensures runs are grouped by PR or by branch
11+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12+ cancel-in-progress : true
13+
14+ jobs :
15+ build-and-test :
16+ # Use the relative path to your reusable workflow
17+ uses : ./.github/workflows/build-and-test.yml
18+ with :
19+ java-version : ' 21'
20+ python-version : ' 3.11'
Original file line number Diff line number Diff line change 7373
7474 <apache .commons.lang.version>3.19.0</apache .commons.lang.version>
7575 <apache .commons.text.version>1.11.0</apache .commons.text.version>
76- <commons-io .version>2.20 .0</commons-io .version>
76+ <commons-io .version>2.21 .0</commons-io .version>
7777 <guava .version>33.3.1-jre</guava .version>
7878
7979 <!-- Release -->
8787 <guice .version>6.0.0</guice .version>
8888
8989 <slf4j .version>2.0.17</slf4j .version>
90- <logback .version>1.5.20 </logback .version>
90+ <logback .version>1.5.21 </logback .version>
9191
9292 <!-- test -->
9393 <junit .version>6.0.1</junit .version>
You can’t perform that action at this time.
0 commit comments