308ba7f915
* Default to go1.17.11 * `go mod vendor` Co-authored-by: dm-2 <45519614+dm-2@users.noreply.github.com>
25 lines
433 B
YAML
25 lines
433 B
YAML
name: migration tests
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
version: [mysql-5.7.25,mysql-8.0.16]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: migration tests
|
|
env:
|
|
TEST_MYSQL_VERSION: ${{ matrix.version }}
|
|
run: script/cibuild-gh-ost-replica-tests
|