We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4606351 commit e8d1dc4Copy full SHA for e8d1dc4
.github/workflows/ci.yml
@@ -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
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