Revert "Add forgejo Actions workflow for Maven build and packaging"

This reverts commit eb8eb1ca43.
This commit is contained in:
2026-03-03 18:22:34 +01:00
parent eb8eb1ca43
commit 34b3f98d37
+7 -5
View File
@@ -10,13 +10,15 @@ on:
jobs:
compile:
runs-on: docker
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install JDK 17 and Maven
run: |
apt-get update
apt-get install -y openjdk-17-jdk maven
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: "17"
cache: maven
- name: Compile (skip tests)
run: mvn -B compile -DskipTests