Add initial HTML structure for professional platform #401
Workflow file for this run
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
| name: CI (pull-requests-only jobs) | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| buildsh: | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_16.4.0.app/Contents/Developer | |
| strategy: | |
| matrix: | |
| mode: [cocoapods-lint-default-subspecs, cocoapods-lint-other-subspecs] | |
| include: | |
| - mode: cocoapods-lint-default-subspecs | |
| name: Verify that default subspecs lint | |
| - mode: cocoapods-lint-other-subspecs | |
| name: Verify that other subspecs lint | |
| name: ${{ matrix.name }} | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout the Git repository | |
| uses: actions/checkout@v2 | |
| - name: Run build script | |
| run: ./build.sh ${{ matrix.mode }} |