Skip to content

Commit

Permalink
Github action to start integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrinot committed Oct 12, 2023
1 parent 72dc752 commit 1dca9f4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/it.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run Integration Tests
on:
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Run integration tests
run: mvn -B verify

0 comments on commit 1dca9f4

Please sign in to comment.