Skip to content

Update docs to match h3-py v4.x (#938) #1573

Update docs to match h3-py v4.x (#938)

Update docs to match h3-py v4.x (#938) #1573

Workflow file for this run

name: test-macos
on:
push:
branches: [master, stable-*]
pull_request:
branches: [master, stable-*]
jobs:
tests:
name: ${{ matrix.build_type }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, macos-13, macos-latest]
build_type: ["Debug", "Release"]
steps:
- uses: actions/[email protected]
- name: Configure build
run: cmake -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.build_type}} -DWARNINGS_AS_ERRORS=ON .
- name: Build
working-directory: build
run: make
- name: binding-functions
working-directory: build
run: |
make binding-functions
test -s binding-functions
- name: Tests
working-directory: build
run: |
make test
sudo make install
- name: Examples
run: |
mkdir build/examples
cd build/examples
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type}} ../../examples
make
make test