Skip to content

Divide test steps by OS in the CI #32

Divide test steps by OS in the CI

Divide test steps by OS in the CI #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: macos-14
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1.6.0
with:
xcode-version: '15.4'
- name: Test iOS
run: make test-ios
- name: Test iPadOS
run: make test-ipados
- name: Test MacOS
run: make test-macos