Add implementation for multidb mode #4
Workflow file for this run
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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| cache: 'maven' | |
| - name: Check code formatting | |
| run: mvn formatter:validate | |
| - name: Build and verify jedis-test-app | |
| run: | | |
| echo "Building jedis-test-app" | |
| mvn -B clean verify | |
| - name: Run integration tests | |
| run: | | |
| echo "Running integration tests" | |
| mvn test |