Skip to content

Commit 0b5dee2

Browse files
author
Vitaliy Boyko
committed
Added windows job
1 parent c4042fa commit 0b5dee2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/gradle.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,20 @@ jobs:
2626
run: chmod +x gradlew
2727
- name: Run automated tests
2828
run: ./gradlew test -i
29+
30+
build-windows:
31+
32+
runs-on: windows-latest
33+
34+
steps:
35+
- uses: actions/checkout@v2
36+
- name: Set up JDK 1.8
37+
uses: actions/setup-java@v1
38+
with:
39+
java-version: 1.8
40+
- name: Gradle wrapper
41+
run: gradle wrapper
42+
- name: Grant execute permission for gradlew
43+
run: chmod +x gradlew
44+
- name: Run automated tests
45+
run: ./gradlew test -i

0 commit comments

Comments
 (0)