Skip to content

Add certificate to fix unit test #291

Add certificate to fix unit test

Add certificate to fix unit test #291

Workflow file for this run

name: Build & Test
env:
XCODE_VERSION: "Xcode_15.0"
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
name: Tests
runs-on: macos-13
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Switch to ${{ env.XCODE_VERSION }}
run: sudo xcode-select --switch /Applications/${{ env.XCODE_VERSION }}.app
- name: Fastlane
run: fastlane tests
codequality:
name: Format
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- name: Switch to ${{ env.XCODE_VERSION }}
run: sudo xcode-select --switch /Applications/${{ env.XCODE_VERSION }}.app
- name: swiftformat
run: swiftformat Sources,Tests --lint