json/.github/workflows/windows.yml

20 lines
297 B
YAML
Raw Normal View History

name: macOS
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: prepare
run: mkdir build
- name: cmake
run: cd build ; cmake ..
2019-09-02 20:15:11 +00:00
- name: build
run: make -C build
2019-09-02 20:15:11 +00:00
- name: test
run: cd build ; ctest -j 10