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 429f422 commit 1fc0622Copy full SHA for 1fc0622
.github/workflows/pull_request.yaml
@@ -0,0 +1,40 @@
1
+name: Pull Request
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
7
+permissions:
8
+ contents: read
9
10
+env:
11
+ LOG_LEVEL: DEBUG
12
+ CASSANDRA_LOG_LEVEL: DEBUG
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ timeout-minutes: 15
18
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - name: Set up JDK 11
22
+ uses: actions/setup-java@v3
23
+ with:
24
+ java-version: '11'
25
+ distribution: 'temurin'
26
+ cache: 'sbt'
27
28
+ - uses: sbt/setup-sbt@v1
29
30
+ - name: Check formatting, scalafix, and headers
31
+ run: sbt styleCheck
32
33
+ - name: Check MiMa
34
+ run: sbt mimaReportBinaryIssues
35
36
+ - name: Check docs
37
+ run: sbt docs/mdoc
38
39
+ - name: Test Coverage
40
+ run: sbt testCoverage
0 commit comments