json/.github/workflows/macos.yml

18 lines
260 B
YAML
Raw Normal View History

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