mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-08-30 21:51:12 +02:00
init
This commit is contained in:
commit
c94580f25c
15 changed files with 711 additions and 0 deletions
20
.github/workflows/style.yml
vendored
Normal file
20
.github/workflows/style.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue