Initial GitHub CI/CD

GitHub CI/CD is [a thing](https://github.com/features/actions)! We will attempt:

- CI: build + unit test
- replica tests: running `gh-ost` tests on multiple MySQL versions
This commit is contained in:
Shlomi Noach 2019-08-11 14:54:00 +03:00 committed by GitHub
parent b38814f90e
commit 43ea21c3bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Go 1.12
uses: actions/setup-go@v1
with:
version: 1.12
id: go
- name: Build
run: script/cibuild