removed swift lint #50
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: Install xcodes | |
run: brew install xcodes | |
- name: Install XcodeGen | |
run: brew install xcodegen | |
- name: Run XcodeGen | |
run: xcodegen | |
- name: Run tests with fastlane | |
run: bundle exec fastlane test |