Set server_id=1 for MySQL in integration tests #281
Workflow file for this run
This file contains 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: Run Tests | |
on: | |
pull_request: | |
branches: | |
- '**' | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
integration-test: | |
name: Java ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
java: [8] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Perl modules | |
run: | | |
sudo apt-get update | |
sudo apt-get install libdbd-mysql-perl | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Run Unit and Integration Tests With Maven | |
run: | | |
./mvnw --batch-mode --errors --no-transfer-progress --show-version \ | |
clean verify -Prun-its |