mirror of
https://github.com/TextureGroup/Texture.git
synced 2026-04-07 19:17:39 +00:00
* Fix: Transfer leadingScreensForBatching from pending state on node load and add tests * Address PR comments * try to fix build * Adding whitespace to see if builds run * Revert prev commit to check if builds are working --------- Co-authored-by: Gianmarco <gfolchi@pinterest.com>
19 lines
410 B
YAML
19 lines
410 B
YAML
name: CI (master-only jobs)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
cocoapods-lint:
|
|
env:
|
|
DEVELOPER_DIR: /Applications/Xcode_26.0.1.app/Contents/Developer
|
|
name: Verify that podspec lints
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout the Git repository
|
|
uses: actions/checkout@v2
|
|
- name: Run build.sh with cocoapods-lint mode
|
|
run: ./build.sh cocoapods-lint
|