Update workflows to use Xcode 16 #94
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: Build | |
on: | |
push: | |
branches-ignore: | |
- "gh-pages" | |
jobs: | |
Test: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "16.0.0" | |
- name: Prepare | |
run: | | |
bundle update --bundler | |
bundle install | |
- name: Run tests | |
env: | |
SLACK_URL: ${{ secrets.SLACK_URL }} | |
run: bundle exec fastlane test |