-
Notifications
You must be signed in to change notification settings - Fork 17
38 lines (32 loc) · 928 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
platform:
- iOS
steps:
- uses: actions/checkout@v4
- name: Remove Development.xcworkspace to avoid tooling confusion
run: rm -rf Development.xcworkspace
- uses: mxcl/[email protected]
with:
platform: ${{ matrix.platform }}
action: test
scheme: CustomAuth
code-coverage: true
upload-logs: always