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 9418da4 commit 2da4a23Copy full SHA for 2da4a23
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags:
8
+ - '*'
9
+ pull_request:
10
11
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v2
19
+ - name: Setup JDK
20
+ uses: actions/setup-java@v2
21
+ with:
22
+ distribution: temurin
23
+ java-version: 8
24
+ - name: Install libuv
25
+ run: sudo apt-get update && sudo apt-get install -y libuv1-dev
26
+ - name: Build and Test
27
+ run: sbt -v +test
.gitignore
@@ -5,3 +5,4 @@ examples/*/target
lowered.hnir
.metals
.bloop
+.bsp
.travis.yml
0 commit comments