Skip to content

Commit b6988d9

Browse files
authored
Create test workflow
1 parent 74f9d14 commit b6988d9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test.yml

+27
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)