Skip to content

Commit

Permalink
Add git-action for running maven test
Browse files Browse the repository at this point in the history
This solved #11.
  • Loading branch information
Kaiser-Yang committed Oct 18, 2024
1 parent fad2bca commit 8a50105
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/mvn-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Maven Test
on:
pull_request:
branches: [ master, develop ]

jobs:
maven-test:
# Containers must run in Linux based operating systems
runs-on: ubuntu-latest
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres
# Provide the password for postgres
env:
POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT }}
- name: Preparation
run: |
bash prepare_dev.sh postgres
- name: Maven Test
run: |
mvn test

0 comments on commit 8a50105

Please sign in to comment.