From bd5c562adc2632e7730f886526254ddbab3cac51 Mon Sep 17 00:00:00 2001 From: June Date: Fri, 3 Apr 2026 22:33:34 +0200 Subject: [PATCH] add CI to run maven verify --- .forgejo/workflows/verify.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/verify.yaml diff --git a/.forgejo/workflows/verify.yaml b/.forgejo/workflows/verify.yaml new file mode 100644 index 0000000..03d331b --- /dev/null +++ b/.forgejo/workflows/verify.yaml @@ -0,0 +1,17 @@ +on: + pull_request: + push: + +jobs: + ansible-lint: + name: Verify + runs-on: docker + steps: + - uses: actions/checkout@v6 + - name: Install pip + run: | + apt update + apt install -y maven + - name: Run maven verify + run: | + maven verify