Skip to content

Commit 4ca12b7

Browse files
committed
install zarrita in CI
1 parent 9e3a240 commit 4ca12b7

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)