add CI to run maven verify
This commit is contained in:
parent
348e097e3b
commit
451d9e179d
1 changed files with 17 additions and 0 deletions
17
.forgejo/workflows/verify.yaml
Normal file
17
.forgejo/workflows/verify.yaml
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue