json/.github/workflows/macos.yml

18 lines
260 B
YAML
Raw Normal View History

2020-05-12 18:30:11 +00:00
name: macOS
on: [push]
jobs:
build:
2020-05-12 18:30:11 +00:00
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: cmake
run: cmake -S . -B build
2019-09-02 20:15:11 +00:00
- name: build
run: cmake --build build
2019-09-02 20:15:11 +00:00
- name: test
run: cd build ; ctest -j 10