This commit is contained in:
Nick Gerleman
2022-10-14 07:32:23 -07:00
parent 6168ad818e
commit c3ac56e6ee
2 changed files with 30 additions and 0 deletions

View File

@@ -16,11 +16,25 @@ jobs:
- name: pod spec lint
run: pod spec lint --verbose
install-sample:
name: Install YogaKitSample
runs-on: macos-latest
steps:
- name: Setup
uses: ./.github/actions/setup-apple
- name: pod install
run: pod install
workingDirectory: ./YogaKit/YogaKitSample
clang-format:
name: Clang Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clang-format
uses: ./.github/actions/clang-format
with:

16
.github/workflows/valiadate-cpp.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: C++
on: [push, pull_request, workflow_dispatch]
jobs:
clang-format:
name: Clang Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: clang-format
uses: ./.github/actions/clang-format
with:
directory: ./yoga