Skip to content

Commit 9f6467c

Browse files
committed
Add a GitHub action to run the regression tests
These just check that the checked in copies of the jenkinsfiles don't trigger any unexpected exceptions or syntax errors.
1 parent 2d52ee1 commit 9f6467c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout sources
11+
uses: actions/checkout@v4
12+
- name: Setup Java
13+
uses: actions/setup-java@v4
14+
with:
15+
distribution: 'temurin'
16+
java-version: 17
17+
- name: Setup Gradle
18+
uses: gradle/actions/setup-gradle@v4
19+
with:
20+
gradle-version: '8.14' # Quotes required to prevent YAML converting to number
21+
- name: Build with Gradle
22+
run: gradle build
23+
- name: Test with Gradle
24+
run: gradle test

0 commit comments

Comments
 (0)