Implement Anchor coding, Tag coding and redundancy auto-aliasing #294
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pod lib lint | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.github/workflows/pod_lib_lint.yml' | |
- '*.podspec' | |
- 'Gemfile*' | |
- 'Sources/**/*.[ch]' | |
- 'Sources/**/*.swift' | |
pull_request: | |
paths: | |
- '.github/workflows/pod_lib_lint.yml' | |
- '*.podspec' | |
- 'Gemfile*' | |
- 'Sources/**/*.[ch]' | |
- 'Sources/**/*.swift' | |
concurrency: | |
group: pod-lib-lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pod_lib_lint: | |
name: pod lib lint | |
runs-on: macos-14 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.4.app | |
strategy: | |
matrix: | |
platform: [macOS, iOS, tvOS, visionOS] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: bundle install --path vendor/bundle | |
- if: matrix.platform == 'visionOS' | |
run: xcodebuild -downloadPlatform visionOS | |
- run: bundle exec pod lib lint --platforms=${{ matrix.platform }} --verbose |