This commit is contained in:
Nick Gerleman
2022-10-14 09:20:52 -07:00
parent b6344224e2
commit 8ad58051ba

View File

@@ -5,6 +5,7 @@ on: [push, pull_request, workflow_dispatch]
jobs:
lint-pods:
name: Lint Podspecs
if: ${{ false }} # Apple Build is Broken
runs-on: macos-latest
steps:
@@ -16,9 +17,13 @@ jobs:
- name: pod spec lint
run: pod spec lint --verbose
install-sample:
name: Install YogaKitSample
build-sample:
name: Build (${{ matrix.mode }})
if: ${{ false }} # Apple Build is Broken
runs-on: macos-latest
strategy:
matrix:
mode: [Debug, Release]
steps:
- uses: actions/checkout@v3
@@ -30,6 +35,8 @@ jobs:
working-directory: ./YogaKit/YogaKitSample
run: pod install
# TODO: xcodebuild
clang-format:
name: Format
runs-on: ubuntu-latest