Skip to content

fix: Add Package.swift file for out-of-the-box SPM compatibility #32

fix: Add Package.swift file for out-of-the-box SPM compatibility

fix: Add Package.swift file for out-of-the-box SPM compatibility #32

name: Continuous Integration
on:
push:
branches:
- main, development
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_16.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