diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 4565694..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: CI -on: - push: - branches: [main] - pull_request: - branches: [main] - schedule: - - cron: 0 13 * * 1 -jobs: - lint: - name: Lint - runs-on: macos-14 - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup CocoaPods - uses: maxim-lobanov/setup-cocoapods@v1 - with: - version: latest - - name: Setup Xcode - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: 15.2 - - name: Repo Lint - run: pod repo lint --verbose . - - name: Add Repo to Sources - run: | - pod repo add self "file://${PWD}" "${{ github.ref_name }}" - - name: Spec Lint - run: | - find Specs -name "*.podspec" -type f | while read -r podspec; do - echo "::group::Linting $podspec" - pod spec lint "$podspec" --allow-warnings --verbose --sources=self - echo "::endgroup::" - done