-
Notifications
You must be signed in to change notification settings - Fork 82
103 lines (86 loc) · 2.85 KB
/
run-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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Run JUnit Tests
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
ubuntu-test:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -x test
- name: Run JUnit Tests
run: |
test_output=$(./gradlew test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if [[ $tests_failed -gt 0 ]]; then
exit 1
fi
test-macos:
runs-on: macos-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -x test
- name: Run JUnit Tests on macOS
run: |
test_output=$(./gradlew test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if [[ $tests_failed -gt 0 ]]; then
exit 1
fi
test-windows:
runs-on: windows-latest
steps:
- name: Check Out Code
uses: actions/checkout@v2
- name: Set up JDK and Gradle on Windows
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt'
- name: Run JUnit Tests on Windows
run: |
test_output=$(./gradlew.bat test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if [[ $tests_failed -gt 0 ]]; then
exit 1
fi