Skip to content

Commit a4452b1

Browse files
committed
Update CI to install HDF5
1 parent 6b79b3e commit a4452b1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v4
3333
- name: CMake
34-
run: cmake -B build
34+
run: |
35+
sudo apt-get update
36+
sudo apt-get install libhdf5-dev
37+
cmake -B build
3538
- name: Build
3639
run: make -C build -j `nproc`
3740
- name: Test

0 commit comments

Comments
 (0)