We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f9d14 commit b6988d9Copy full SHA for b6988d9
.github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+# This workflow uses actions that are not certified by GitHub.
2
+name: Test
3
+
4
+on:
5
+ push:
6
7
+permissions:
8
+ contents: read
9
10
+jobs:
11
+ test:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up JDK 11
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ java-version: '11'
21
+ distribution: 'temurin'
22
+ cache: 'sbt'
23
+ - name: Run tests
24
+ run: sbt test
25
+ # Optional: This step uploads information to the GitHub dependency graph and unblocking Dependabot alerts for the repository
26
+ - name: Upload dependency graph
27
+ uses: scalacenter/sbt-dependency-submission@ab086b50c947c9774b70f39fc7f6e20ca2706c91
0 commit comments