Skip to content

Commit d0783ed

Browse files
ci(jbr-toolchain): add cross-platform test workflow
1 parent 56fac94 commit d0783ed

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)