Store User information in CoreData #124
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: Fastlane Tests | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- uses: actions/checkout@v4 | |
- name: Use sample configuration | |
run: cp BeeSwift/Config.swift.sample BeeKit/Config.swift | |
- name: Setup ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7.2' | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec fastlane test | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: 'fastlane/test_output/report.junit' |