Merge pull request #22 from quiltt/release/0.0.9 #54
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 | |
# jobs: | |
# build: | |
# runs-on: macos-13 # Weird that macos-latest doesn't have iOS 17 | |
# strategy: | |
# matrix: | |
# ios: [17] | |
# name: Build on iOS (${{ matrix.ios }}) | |
# steps: | |
# - uses: maxim-lobanov/setup-xcode@v1 | |
# with: | |
# xcode-version: latest-stable | |
# - name: Check out code | |
# uses: actions/checkout@v4 | |
# - name: Install Fastlane | |
# run: | | |
# gem install bundler | |
# bundle install | |
# - name: Build Example App | |
# run: | | |
# bundle exec fastlane ios build_example_app |