Skip to content

Commit

Permalink
Merge pull request #7 from Mastercard/karen-avetisyan-mc-patch-1
Browse files Browse the repository at this point in the history
Create maven-test.yml
  • Loading branch information
karen-avetisyan-mc authored Oct 31, 2024
2 parents ad19c24 + bb809b8 commit 3b1b8b2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/maven-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build & Test
'on':
push:
branches:
- "**"
pull_request:
branches:
- "**"
schedule:
- cron: 0 16 * * *
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java:
- 17
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v1
with:
java-version: '${{ matrix.java }}'
- name: Build and test with Maven
run: mvn -B package -Dgpg.signature.skip=true -Dspring.profiles.active=oauth

0 comments on commit 3b1b8b2

Please sign in to comment.