Skip to content

Commit f297b21

Browse files
authored
Add jobs for tests on mac & windows
1 parent 3293bd0 commit f297b21

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,29 @@ on:
1212

1313
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1414
jobs:
15-
# This workflow contains a single job called "build"
16-
build:
17-
# The type of runner that the job will run on
15+
linux:
1816
runs-on: ubuntu-latest
1917

20-
# Steps represent a sequence of tasks that will be executed as part of the job
2118
steps:
22-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2319
- uses: actions/checkout@v2
2420

25-
# Runs a single command using the runners shell
26-
- name: Run all tests
21+
- name: Run JVM tests
2722
run: ./gradlew lib:jvmTest
2823

29-
# Runs a set of commands using the runners shell
30-
#- name: Run a multi-line script
31-
# run: |
32-
# echo Add other actions to build,
33-
# echo test, and deploy your project.
24+
macos:
25+
runs-on: macos-latest
26+
27+
steps:
28+
- uses: actions/checkout@v2
29+
30+
- name: Run JVM tests
31+
run: ./gradlew lib:jvmTest
32+
33+
windows:
34+
runs-on: windows-latest
35+
36+
steps:
37+
- uses: actions/checkout@v2
38+
39+
- name: Run JVM tests
40+
run: ./gradlew lib:jvmTest

0 commit comments

Comments
 (0)