updated ruby action to 3.3.0 #38
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: Run unit and ui tests | |
on: | |
push: | |
branches-ignore: | |
- 'develop' | |
- 'main' | |
jobs: | |
test: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Ruby 3.3.0 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.0' | |
bundler-cache: true | |
- name: Netrc api.github.com | |
uses: extractions/netrc@v1 | |
with: | |
machine: maven.pkg.github.com | |
username: cirunner | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup xcodegen and init xcode project | |
uses: xavierLowmiller/[email protected] | |
with: | |
spec: project.yml | |
use-cache: true | |
- name: Run tests with fastlane | |
run: bundle exec fastlane test |