Skip to content

Commit e8d1dc4

Browse files
committed
Setup CI
1 parent 4606351 commit e8d1dc4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
15+
- name: Setup Java
16+
uses: actions/setup-java@v2
17+
with:
18+
distribution: adopt
19+
java-version: 11
20+
21+
- name: Setup Mill
22+
uses: jodersky/setup-mill@master
23+
with:
24+
mill-version: 0.10.5
25+
26+
- name: Run tests
27+
run: |
28+
mill -k --disable-ticker __.checkFormat &&
29+
mill -k --disable-ticker __.test

0 commit comments

Comments
 (0)