Skip to content

Commit c557b41

Browse files
committed
Add MacOS to CI.
1 parent 451ffc8 commit c557b41

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,18 @@ jobs:
3939
run: make -C build -j `nproc`
4040
- name: Test
4141
run: |
42-
find . -iname "*.mtx"
42+
./build/test/gtest/binsparse-tests
43+
44+
macos:
45+
runs-on: 'macos-latest'
46+
steps:
47+
- uses: actions/checkout@v4
48+
- name: CMake
49+
run: |
50+
brew install hdf5
51+
cmake -B build
52+
- name: Build
53+
run: make -C build -j
54+
- name: Test
55+
run: |
4356
./build/test/gtest/binsparse-tests

0 commit comments

Comments
 (0)