File tree Expand file tree Collapse file tree 1 file changed +19
-12
lines changed Expand file tree Collapse file tree 1 file changed +19
-12
lines changed Original file line number Diff line number Diff line change 1212
1313# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1414jobs :
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
You can’t perform that action at this time.
0 commit comments