From de3b98533a326cd8172a99f5543b62d7ce284ee8 Mon Sep 17 00:00:00 2001 From: Emmanuel T Odeke Date: Mon, 24 Jul 2023 12:03:46 -0500 Subject: [PATCH] ci/test: run mvn verify for every PR and merge to main Fixes #39 --- .github/workflows/test.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..9970c76c --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,28 @@ +name: Test + +on: + push: + branches: + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + services: + emulator: + image: gcr.io/cloud-spanner-emulator/emulator:latest + ports: + - 9010:9010 + - 9020:9020 + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Use Java 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + cache: 'maven' + - name: Run the Maven verify phase + run: mvn --batch-mode --update-snapshots verify