File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test Kotlin/JVM
2
+ on :
3
+ workflow_dispatch :
4
+ push :
5
+ pull_request :
6
+
7
+ permissions : {}
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-24.04
12
+ steps :
13
+ - name : " Check out PR branch"
14
+ uses : actions/checkout@v4
15
+ with :
16
+ submodules : recursive
17
+ persist-credentials : false
18
+ fetch-depth : 0
19
+
20
+ - name : " Cache"
21
+ uses : actions/cache@v3
22
+ with :
23
+ path : |
24
+ ~/.cargo/registry
25
+ ~/.cargo/git
26
+ ./target
27
+ key : ${{ runner.os }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
28
+
29
+ - name : " Set up JDK"
30
+ uses : actions/setup-java@v4
31
+ with :
32
+ distribution : temurin
33
+ java-version : 17
34
+
35
+ - name : " Run JVM tests"
36
+ run : |
37
+ bash ./scripts/build-linux-x86_64.sh
38
+ ./gradlew test -P excludeConnectedTests
39
+ ./gradlew :examples:build
You can’t perform that action at this time.
0 commit comments