mirror of
https://github.com/TextureGroup/Texture.git
synced 2026-04-07 19:17:39 +00:00
27 lines
715 B
YAML
27 lines
715 B
YAML
name: CI (pull-requests-only jobs)
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
buildsh:
|
|
env:
|
|
DEVELOPER_DIR: /Applications/Xcode_11.5.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 }}
|