Skip to content

Commit

Permalink
ci/test: run mvn verify for every PR and merge to main
Browse files Browse the repository at this point in the history
Fixes #39
  • Loading branch information
odeke-em committed Jul 24, 2023
1 parent d8d1fa3 commit de3b985
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit de3b985

Please sign in to comment.