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 0e22f0a commit c3282d8Copy full SHA for c3282d8
.github/workflows/main.yml
@@ -20,6 +20,10 @@ jobs:
20
steps:
21
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22
- uses: actions/checkout@v2
23
+ # Specify the version of Java that is installed
24
+ - uses: actions/setup-java@v1
25
+ with:
26
+ java-version: '8'
27
# Run the build script
28
- name: Install dependencies, set environment variables, and build the package
29
run: ./.github/scripts/build.sh
@@ -31,7 +35,10 @@ jobs:
31
35
needs: build
32
36
33
37
34
- # Run tests
38
39
40
41
+ # Run sbt tests
42
- name: Run tests
43
run: ./build/sbt test
- shell: bash
44
+
0 commit comments