-
Notifications
You must be signed in to change notification settings - Fork 3
66 lines (53 loc) · 1.66 KB
/
commit.yml
File metadata and controls
66 lines (53 loc) · 1.66 KB
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
name: "Commit"
on:
push:
branches: [ master ]
pull_request:
jobs:
security:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Switch to Gradle Binary Distribution
run: sed -i 's/-all.zip/-bin.zip/' gradle/wrapper/gradle-wrapper.properties
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
ktlint:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v2
with:
fetch-depth: 0
# https://github.com/actions/setup-java
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
- name: Switch to Gradle Binary Distribution
run: sed -i 's/-all.zip/-bin.zip/' gradle/wrapper/gradle-wrapper.properties
- name: Ktlint
run: ./gradlew ktlint --stacktrace
build:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v2
with:
fetch-depth: 0
# https://github.com/actions/setup-java
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 11
- name: Switch to Gradle Binary Distribution
run: sed -i 's/-all.zip/-bin.zip/' gradle/wrapper/gradle-wrapper.properties
- name: Assemble
run: ./gradlew assemble --stacktrace
- name: Tests
run: ./gradlew test --stacktrace
- name: Validate plugins
run: ./gradlew validatePlugins --stacktrace