Bump version to 1.6.0 #82
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: Build and test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build-and-test-macOS-12: | |
runs-on: macos-12 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode-version: [13.4.1, 14.0.1] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies in Gemfile | |
run: bundle install | |
- name: Install dependencies in Podfile | |
working-directory: Example | |
run: bundle exec pod update | |
- name: Build and run tests | |
working-directory: Example | |
run: bundle exec fastlane scan | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer | |
- name: Post job cleanup | |
run: git clean -ffdxq | |
if: always() | |
continue-on-error: true | |
build-and-test-macOS-13: | |
runs-on: macos-13 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode-version: [14.2, 14.3] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies in Gemfile | |
run: bundle install | |
- name: Install dependencies in Podfile | |
working-directory: Example | |
run: bundle exec pod update | |
- name: Build and run tests | |
working-directory: Example | |
run: bundle exec fastlane scan | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer | |
- name: Post job cleanup | |
run: git clean -ffdxq | |
if: always() | |
continue-on-error: true | |
build-and-test-macOS-14: | |
runs-on: macos-14 | |
strategy: | |
fail-fast: false | |
matrix: | |
xcode-version: ['15.1','15.4','16.0'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies in Gemfile | |
run: bundle install | |
- name: Install dependencies in Podfile | |
working-directory: Example | |
run: bundle exec pod update | |
- name: Build and run tests | |
working-directory: Example | |
run: bundle exec fastlane scan | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer | |
- name: Post job cleanup | |
run: git clean -ffdxq | |
if: always() | |
continue-on-error: true | |
build-and-test-swiftpm: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install dependencies in Gemfile | |
run: bundle install | |
- name: Build and run tests | |
run: | | |
xcodebuild build \ | |
-project "Example/SwiftPM/Lasso-SwiftPM/Lasso-SwiftPM.xcodeproj" \ | |
-scheme "Lasso-SwiftPM" \ | |
-destination "platform=iOS Simulator,name=iPhone 14,OS=17.4" | |
- name: Post job cleanup | |
run: git clean -ffdxq | |
if: always() | |
continue-on-error: true |