Skip to content

Commit a716a0b

Browse files
committed
Add PR test workflow, rename main.yml
1 parent 30ace4a commit a716a0b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
File renamed without changes.

.github/workflows/run-tests.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
name: Run tests
3+
4+
on:
5+
push:
6+
paths-ignore:
7+
- README.md
8+
9+
jobs:
10+
build-branch:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 20
13+
steps:
14+
15+
- name: Setup Maven Action # Composite action
16+
17+
with:
18+
java-version: 21
19+
java-distribution: zulu
20+
maven-version: 3.9.9
21+
22+
- name: Build with Maven and test
23+
run: mvn --batch-mode -P ssb-bip verify test

0 commit comments

Comments
 (0)