This commit is contained in:
parent
2f9c3d6d50
commit
c8d2782dd3
2 changed files with 13 additions and 38 deletions
13
.forgejo/workflows/maven-build.yaml
Normal file
13
.forgejo/workflows/maven-build.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
pkgcheck:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: maven:3.9-eclipse-temurin-25
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v6
|
||||
- name: Run maven build
|
||||
run: mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
||||
- name: Run tests
|
||||
run: mvn test -B
|
||||
Loading…
Add table
Add a link
Reference in a new issue