Fix dependency issue with apache poi #2289
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: Transaction Counter tests (OpenJDK11 & MySQL) | |
on: [push, pull_request] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up MySQL | |
run: | | |
sudo /etc/init.d/mysql start | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
distribution: 'adopt' | |
java-version: 11 | |
- name: Build in JDK 11 | |
run: mvn -B clean install -DskipTests --file pom.xml | |
- name: Transaction Counter Tests | |
run: mvn -B clean install --file integration/pom.xml -P transaction-tests |