-
Notifications
You must be signed in to change notification settings - Fork 4
30 lines (27 loc) · 1.09 KB
/
swift.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
name: "WoosmapGeofencing"
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
iOS:
name: Test_iOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- name: chmod
run : sudo chmod -R o+w /Users/runner/Library/Developer/CoreSimulator/Devices/
- name: Run echo tests
run: echo $(ls -l /Users/runner/Library/Developer/CoreSimulator/Devices/)
- name: display working directory
run: echo $(pwd)
- name: iOS - ${{ matrix.destination }}
run: xcodebuild test -project WoosmapGeofencing/WoosmapGeofencing.xcodeproj -scheme WoosmapGeofencingTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 11"
continue-on-error: true
- run : sudo chmod -R o+w /Users/runner/Library/Developer/CoreSimulator/Devices/
- name: iOS - ${{ matrix.destination }}
run: xcodebuild test -project WoosmapGeofencing/WoosmapGeofencing.xcodeproj -scheme WoosmapGeofencingTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 11"
continue-on-error: true