Adding README and guidelines for contributing #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Integration Tests for Querqy | |
| # Build every push and every pull request | |
| on: [push, pull_request] | |
| jobs: | |
| integration-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Select JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 11 | |
| cache: 'maven' | |
| - name: Integration Tests | |
| run: mvn --batch-mode verify -DskipITs=false --file pom.xml | |