Skip to content

remove duplicate cors arg, add args to int test #124

remove duplicate cors arg, add args to int test

remove duplicate cors arg, add args to int test #124

name: Build Java Binary and Run Tests
# We want to verify the Java jar can be built and that tests
# pass on every push (whether to master or not), in addition to pull request
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Maven
run: mvn clean verify