Skip to content

Update tests

Update tests #208

Workflow file for this run

name: Run tests
on:
push:
tags-ignore:
- '**'
branches:
- '**'
pull_request:
jobs:
tests:
name: Run Xcode Tests
runs-on: macos-13
strategy:
matrix:
xcode: ["15.0.0"]
ios_version: [latest, 16.4, 15.5]
device: [iPhone, iPad]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install SwiftGen
run: which swiftgen || HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 brew install swiftgen
- name: Install SwiftLint
run: which swiftlint || HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 brew install swiftlint
- name: Select Xcode ${{ matrix.xcode }}
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Cache DerivedData
uses: actions/cache@v3
with:
path: ~/Library/Developer/Xcode/DerivedData
key: ${{ runner.os }}-iOS_derived_data-xcode_${{ matrix.xcode }}
restore-keys: |
${{ runner.os }}-iOS_derived_data
- name: Build & Test
uses: sersoft-gmbh/[email protected]
with:
project: Zotero.xcodeproj
scheme: Zotero
destination: platform=iOS Simulator,OS=${{ matrix.ios_version }},name=${{ matrix.device }}
action: test