You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: MySQL 5.7on: [ pull_request ]jobs:
build:
runs-on: ubuntu-20.04steps:
- uses: actions/checkout@v3
- name: Set up Temurin 8uses: actions/setup-java@v3with:
distribution: temurinjava-version: 8cache: maven
- name: Shutdown the Default MySQLrun: sudo service mysql stop
- name: Set up MySQL 5.7uses: asyncer-io/mysql-action@trunkwith:
# THIS IS THE SINGLE VALUE THAT'S DIFFERENTmysql version: 5.7mysql database: r2dbcmysql root password: r2dbc-password!@
- name: Integration test with MySQL 5.7run: ./mvnw -B verify -Dmaven.javadoc.skip=true -Dmaven.surefire.skip=true -Dtest.mysql.password=r2dbc-password!@ -Dtest.mysql.version=5.7 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN
The text was updated successfully, but these errors were encountered:
Is what you're asking for a recipe which analyzes many different workflows, keeps the commonalities, and parameterizes the differences? That sounds quite complex to solve in the general case.
Given a set of similar workflows such as those found at https://github.com/asyncer-io/r2dbc-mysql/tree/f4ca1652219074c337d7db12d2572686da2c3a64/.github/workflows where 3 workflows are almost identical except for 1 property
The text was updated successfully, but these errors were encountered: