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 56fac94 commit d0783edCopy full SHA for d0783ed
.github/workflows/jbr-toolchain.yml
@@ -0,0 +1,28 @@
1
+name: Test jbr-toolchain
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'buildSrc/**'
7
+ - 'gradle/**'
8
+ - '*.gradle.kts'
9
+ - 'subprojects/jbr-toolchain/**'
10
+ - '.github/workflows/jbr-toolchain.yml'
11
12
+jobs:
13
+ build:
14
+ name: Test on ${{ matrix.os }}
15
+ runs-on: ${{ matrix.os }}
16
+ strategy:
17
+ matrix:
18
+ os: [ubuntu-latest, windows-latest]
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - name: Set up JDK
23
+ uses: actions/setup-java@v4
24
+ with:
25
+ distribution: jetbrains
26
+ java-version: 17
27
+ - name: Build
28
+ run: ./gradlew :jbr-toolchain:build
0 commit comments