-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (43 loc) · 1.39 KB
/
PR.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
45
46
47
name: PR-Test
on:
pull_request:
paths-ignore:
- '*.md'
- '*.yml'
jobs:
test_linux:
if: ${{ github.repository == 'kotest/kotest-property-datetime' }}
strategy:
matrix:
target:
- jvmTest
- jsTest
- wasmJsTest
- linuxX64Test linuxArm64TestKlibrary
uses: ./.github/workflows/run-gradle.yml
with:
runs-on: ubuntu-latest
ref: ${{ inputs.ref }}
task: ${{ matrix.target }}
test_mac:
if: ${{ github.repository == 'kotest/kotest-property-datetime' }}
strategy:
fail-fast: true
matrix:
target:
- macosX64Test macosArm64Test
- iosX64Test iosSimulatorArm64Test iosArm64TestKlibrary
- tvosX64Test tvosArm64TestKlibrary tvosSimulatorArm64Test
- watchosArm32TestKlibrary watchosArm64TestKlibrary watchosX64Test watchosSimulatorArm64Test watchosDeviceArm64TestKlibrary
uses: ./.github/workflows/run-gradle.yml
with:
runs-on: macos-latest
ref: ${{ inputs.ref }}
task: ${{ matrix.target }}
test_windows:
if: ${{ github.repository == 'kotest/kotest-property-datetime' }}
uses: ./.github/workflows/run-gradle.yml
with:
runs-on: windows-latest
ref: ${{ inputs.ref }}
task: mingwX64Test