feat: 🎸 add support for ruby 3.4 #327
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: Acceptance Test MySQL | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
mysql81: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 # shallow clone | |
- name: run test | |
run: docker-compose/acceptance_test.sh mysql81 docker-compose-ci.yml | |
env: | |
TRACE: ${{ vars.TRACE }} | |
mysql80: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 # shallow clone | |
- name: run test | |
run: docker-compose/acceptance_test.sh mysql80 docker-compose-ci.yml | |
env: | |
TRACE: ${{ vars.TRACE }} | |
mysql57: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 # shallow clone | |
- name: run test | |
run: docker-compose/acceptance_test.sh mysql57 docker-compose-ci.yml | |
env: | |
TRACE: ${{ vars.TRACE }} |