diff --git a/.github/workflows/valiadate-apple.yml b/.github/workflows/valiadate-apple.yml index d9d6ae82..e6fa98c8 100644 --- a/.github/workflows/valiadate-apple.yml +++ b/.github/workflows/valiadate-apple.yml @@ -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