-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (39 loc) · 892 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
name: ci
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
jobs:
checks:
name: Format and style checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt
- run: sbt --client scalafmtCheckAll
- run: sbt --client scalafmtSbtCheck
- run: sbt --client headerCheckAll
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
test:
name: Compile and test
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: sbt
- run: sbt --client +compile
- run: sbt --client +test