Skip to content

Nightly Tests

Nightly Tests #5

Workflow file for this run

name: Nightly Tests
on:
schedule:
- cron: "0 5 * * 3,5" # cron is UTC, this translates to 10 PM PST Tues and Thur.
jobs:
ios-pr:
strategy:
fail-fast: false
matrix:
lib: [SalesforceSDKCommon, SalesforceAnalytics, SalesforceSDKCore, SmartStore, MobileSync]
ios: [^18, ^17]
include:
- ios: ^18
macos: macos-15
- ios: ^17
macos: macos-14
uses: ./.github/workflows/reusable-workflow.yaml
with:
lib: ${{ matrix.lib }}
ios: ${{ matrix.ios }}
macos: ${{ matrix.macos }}
secrets: inherit