This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Bump ch.qos.logback:logback-classic from 1.2.6 to 1.3.12 #121
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: MySQL 5.6 | |
on: [ pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Temurin 8 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: 8 | |
cache: maven | |
- name: Shutdown the Default MySQL | |
run: sudo service mysql stop | |
- name: Set up MySQL 5.6 | |
uses: mirromutth/[email protected] | |
with: | |
mysql version: 5.6 | |
mysql database: r2dbc | |
mysql root password: ${{ secrets.DB_PASSWORD }} | |
- name: Integration test with MySQL 5.6 | |
run: ./mvnw -B verify -Dmaven.javadoc.skip=true -Dmaven.surefire.skip=true -Dtest.mysql.password=${{ secrets.DB_PASSWORD }} -Dtest.mysql.version=5.6 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN |