We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7534b commit e062e8dCopy full SHA for e062e8d
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,28 @@
1
+name: Main
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ main:
13
+ runs-on: ${{ matrix.image }}
14
+ strategy:
15
+ matrix:
16
+ image: [ ubuntu-20.04, windows-2019 ]
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: SBT Cache
20
+ uses: actions/cache@v2
21
+ with:
22
+ path: |
23
+ ~/.ivy2/cache
24
+ ~/.sbt
25
+ key: ${{ runner.os }}.sbt.${{ hashFiles('**/*.sbt') }}+${{ hashFiles('project/build.properties') }}
26
27
+ - name: Build
28
+ run: sbt dist
0 commit comments