-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (39 loc) · 1.08 KB
/
build.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
name: Build and validate
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
- run: |
sudo apt-get -y install graphviz
./gradlew build
- name: Test code by creating local workspace file
run: ./gradlew run
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
- name: Install ktlint
run: |
curl -sSLO https://github.com/pinterest/ktlint/releases/download/0.41.0/ktlint
chmod a+x ktlint
- run: ./ktlint --editorconfig=.editorconfig "src/**/*.kt"
test-image-generation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '17'
- uses: ts-graphviz/setup-graphviz@v2
- run: script/generate_images.sh