diff --git a/.github/workflows/it.yml b/.github/workflows/it.yml new file mode 100644 index 0000000..b75f03a --- /dev/null +++ b/.github/workflows/it.yml @@ -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 \ No newline at end of file