File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,33 @@ jobs:
1111 build :
1212 strategy :
1313 matrix :
14- os : [ ubuntu, windows, macos ]
14+ os : [ ubuntu-latest , windows-latest , macos-latest ]
1515 fail-fast : false
16- runs-on : ${{ matrix.os }}-latest
16+ runs-on : ${{ matrix.os }}
1717 defaults :
1818 run :
1919 shell : bash
2020
2121 steps :
2222 - uses : actions/checkout@v3
23+
2324 - name : Set up JDK
2425 uses : actions/setup-java@v3
2526 with :
2627 java-version : ' 22'
2728 distribution : ' temurin'
2829 cache : maven
2930
31+ - name : Set up Python
32+ uses : actions/setup-python@v4
33+ with :
34+ python-version : ' 3.x'
35+
36+ - name : Install zarrita
37+ run : |
38+ python -m pip install --upgrade pip
39+ pip install zarrita
40+
3041 - name : Download blosc jar
3142 run : |
3243 mkdir -p ../blosc-java/target
You can’t perform that action at this time.
0 commit comments