Skip to content

test: api tests

test: api tests #4

Workflow file for this run

name: Maven Tests
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "oracle"
- name: Maven tests
run: |
./tools/mvn_test.sh
shell: bash