Reconfigure for gitea/woodpecker

This commit is contained in:
Stephan Schnabel 2025-04-28 20:42:15 +02:00
parent f421be47af
commit 9638e13671
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
18 changed files with 1144 additions and 375 deletions

View file

@ -1,63 +0,0 @@
name: PullRequest
on: pull_request
env:
MAVEN_ARGS: --batch-mode --color=always --no-transfer-progress -Dmaven.test.redirectTestOutputToFile=false
jobs:
yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ibiqlik/action-yamllint@v3
with:
format: colored
strict: true
markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: avto-dev/markdown-lint@v1
with:
args: /github/workspace
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- run: mvn $MAVEN_ARGS verify
- run: mvn $MAVEN_ARGS site
- uses: actions/upload-artifact@v4
if: always()
with:
path: target/site
versions:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- 22.0.5
- 23.0.7
- 24.0.5
- 25.0.6
- 26.0.8
- 26.1.5
- 26.2.1
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- run: mvn $MAVEN_ARGS verify -Dcheck.skip -Dversion.org.keycloak.test=${{ matrix.version }}