Commit a9b80d9 1 parent d465bb3 commit a9b80d9 Copy full SHA for a9b80d9
File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,22 @@ jobs:
28
28
runs-on : ubuntu-latest
29
29
steps :
30
30
- uses : acryldata/sane-checkout-action@v3
31
+ - uses : actions/setup-python@v5
32
+ with :
33
+ python-version : " 3.10"
34
+ - uses : actions/cache@v4
35
+ with :
36
+ path : |
37
+ ~/.cache/uv
38
+ key : ${{ runner.os }}-uv-${{ hashFiles('**/requirements.txt') }}
39
+ - name : Install dependencies
40
+ run : ./metadata-ingestion/scripts/install_deps.sh
31
41
- name : Set up JDK 17
32
42
uses : actions/setup-java@v4
33
43
with :
34
44
distribution : " zulu"
35
45
java-version : 17
36
46
- uses : gradle/actions/setup-gradle@v3
37
- - uses : actions/setup-python@v5
38
- with :
39
- python-version : " 3.10"
40
47
- name : check ${{ matrix.command }} jar
41
48
run : |
42
49
./gradlew :metadata-integration:java:${{ matrix.command }}:build --info
You can’t perform that action at this time.
0 commit comments