- Notifications
You must be signed in to change notification settings - Fork545
Allow access to ServiceEntry properties (#575)#57
This file contains hidden or 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
| # This is the First Workflow for Testing with Github Actions | |
| name:Pod Lint | |
| on: | |
| push: | |
| branches:[ "master" ] | |
| pull_request: | |
| branches:[ "master" ] | |
| jobs: | |
| pod-lint: | |
| runs-on:macos-15 | |
| env: | |
| ENCODING:LC_CTYPE=en_US.UTF-8 | |
| DEVELOPER_DIR:/Applications/Xcode_16.4.app/Contents/Developer | |
| steps: | |
| -name:Checkout repository | |
| uses:actions/checkout@v4 | |
| -name:Inspect Environment | |
| run:xcrun simctl list | |
| shell:bash | |
| -name:Linting PodSpec for Cocoapods | |
| run:export "${{ env. ENCODING }}" | pod lib lint --verbose | |
| shell:bash |