Add fonts #13
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 build and test | |
on: | |
pull_request: | |
branches: [ "main", "develop/main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up ruby env | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.2' | |
bundler-cache: true | |
working-directory: ./TikTok Reporter | |
- name: Build & Test with fastlane | |
working-directory: ./TikTok Reporter | |
run: bundle exec fastlane ios tests | |