20 lines
323 B
YAML
20 lines
323 B
YAML
name: MacOS
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install clang-format
|
|
run: brew install clang-format
|
|
|
|
- name: configure
|
|
run: cmake -Htest -Bbuild
|
|
|
|
- name: check style
|
|
run: cmake --build build --target check-format
|