Skip to content

Update CI to Xcode 15 #89

Update CI to Xcode 15

Update CI to Xcode 15 #89

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref }}'
cancel-in-progress: true
jobs:
test:
name: "Test"
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Check cache for Bundler dependencies
uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Run bundle install
run: |
bundle config path vendor/bundle
bundle install
- name: Check cache for Swift Package Manager dependencies
uses: actions/cache@v2
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Execute fastlane `test`
run: bundle exec fastlane test
- name: Report code coverage
uses: codecov/codecov-action@v4
timeout-minutes: 10
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
exclude: Tests/**/*