Skip to content

Commit f6e9618

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 f6e9618

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
- name: Build with Gradle
20+
run: ./gradlew build
21+
- name: Test with Gradle
22+
run: ./gradlew build

0 commit comments

Comments
 (0)