From 451d9e179d6fc626b3f56addf9ff6c702534cedc Mon Sep 17 00:00:00 2001 From: June Date: Fri, 3 Apr 2026 22:50:12 +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..be66b11 --- /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 maven + run: | + apt update + apt install -y maven + - name: Run maven verify + run: | + mvn -f attribute-endpoints-provider verify