mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 21:51:12 +02:00
20 lines
323 B
YAML
20 lines
323 B
YAML
name: Style
|
|
|
|
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
|