-
-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (43 loc) · 1.2 KB
/
tests.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
39
40
41
42
43
44
name: "Tests"
on:
push:
paths:
- '.github/workflows/tests.yml'
- 'action.yml'
- 'dist/**'
pull_request:
paths:
- '.github/workflows/tests.yml'
- 'action.yml'
- 'dist/**'
jobs:
# test action works running from the graph
test:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: ["macos-11", "macos-12"]
xcode-version: ["13.1", "13.2.1", "13.4"]
include:
- operating-system: "macos-10.15"
xcode-version: "11.0"
- operating-system: "macos-10.15"
xcode-version: "11.5"
- operating-system: "macos-10.15"
xcode-version: "12.0.1"
- operating-system: "macos-10.15"
xcode-version: "12.4"
- operating-system: "macos-11"
xcode-version: "12.0.1"
exclude:
- operating-system: "macos-11"
xcode-version: "13.4"
steps:
- uses: actions/checkout@v3
- uses: ./
with:
xcode-version: ${{ matrix.xcode-version }}
apple-id: [email protected]
apple-id-password: ${{ secrets.APPLE_ID_PASSWORD }}
- run: xcodebuild -version