[wip] Working on CI #808
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: CI | |
on: [push, pull_request] | |
jobs: | |
buildsh: | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer | |
strategy: | |
matrix: | |
mode: [tests, framework, life-without-cocoapods, carthage] | |
include: | |
- mode: tests | |
name: Build and run tests | |
- mode: framework | |
name: Build Texture as a dynamic framework | |
- mode: life-without-cocoapods | |
name: Build Texture as a static library | |
- mode: carthage | |
name: Verify that Carthage works | |
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 }} |