Add running tests
This commit is contained in:
parent
cd31ec8a20
commit
1c2adb1a92
3 changed files with 15 additions and 8 deletions
17
.forgejo/workflows/test.yaml
Normal file
17
.forgejo/workflows/test.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v7
|
||||
- name: Install maven
|
||||
run: |
|
||||
apt update
|
||||
apt install -y maven
|
||||
- name: Run maven verify test
|
||||
run: |
|
||||
mvn -f attribute-endpoints-provider verify test
|
||||
Loading…
Add table
Add a link
Reference in a new issue