rename github action file and update readme (#1494)

This commit is contained in:
John Grosh
2024-03-04 19:35:32 -05:00
committed by GitHub
parent bb17c984a2
commit 6752695b43
2 changed files with 4 additions and 4 deletions

22
.github/workflows/build-and-test.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build and Test with Maven
run: mvn --batch-mode --update-snapshots verify