Rename id
to identifier
to prevent conflicts with SwiftData's def…
#121
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
iOS: | |
runs-on: macos-15 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '16.0' | |
- name: Build and test | |
run: make test-ios | |
iPadOS: | |
runs-on: macos-15 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '16.0' | |
- name: Build and test | |
run: make test-ipados | |
macOS: | |
runs-on: macos-15 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '16.0' | |
- name: Build and test | |
run: make test-macos |