File tree Expand file tree Collapse file tree 4 files changed +25
-47
lines changed
Expand file tree Collapse file tree 4 files changed +25
-47
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/setup_unit_test_env.sh
54- chmod +x test/python_unit_tests/run_python_unit_tests.sh
5551 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'
You can’t perform that action at this time.
0 commit comments