Create Whole Project Structure #16
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
sonarcloud: | |
name: Unit-Tests | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Link SwiftLint or install it | |
run: brew link --overwrite swiftlint || brew install swiftlint | |
- name: Set up XCode | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.app | |
- name: Bundle Install | |
run: bundle install | |
- name: Unit tests | |
run: bundle exec fastlane unit_tests | |
- name: Code Coverage | |
run: bundle exec fastlane coverage | |
- name: Lint | |
run: bundle exec fastlane lint |