gh-ost/.github/workflows/replica-tests.yml

25 lines
464 B
YAML
Raw Normal View History

2019-08-11 12:04:04 +00:00
name: migration tests
2019-08-11 11:58:37 +00:00
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
2021-05-07 22:23:31 +00:00
strategy:
matrix:
version: [mysql-5.5.62,mysql-5.6.43,mysql-5.7.25,mysql-8.0.16]
2019-08-11 11:58:37 +00:00
steps:
2020-06-28 05:39:16 +00:00
- uses: actions/checkout@v2
2019-08-11 11:58:37 +00:00
- name: Set up Go 1.16
2019-08-11 11:58:37 +00:00
uses: actions/setup-go@v1
with:
go-version: 1.16
2019-08-11 11:58:37 +00:00
2019-08-11 12:04:04 +00:00
- name: migration tests
2021-05-07 22:23:31 +00:00
env:
TEST_MYSQL_VERSION: ${{ matrix.version }}
2019-08-11 11:58:37 +00:00
run: script/cibuild-gh-ost-replica-tests