Migrate ScoreView to new Observable #168
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: Development Workflow | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
run-tests: | |
runs-on: macos-14 | |
defaults: | |
run: | |
working-directory: ./FootballGather | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/FootballGather/Gemfile | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- name: Select Xcode | |
run: | | |
ls /Applications | grep Xcode | |
sudo xcode-select -switch /Applications/Xcode_16.0.app | |
- name: Run UT | |
run: bundle exec fastlane ut |