308ba7f915
* Default to go1.17.11 * `go mod vendor` Co-authored-by: dm-2 <45519614+dm-2@users.noreply.github.com>
26 lines
394 B
YAML
26 lines
394 B
YAML
name: CI
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.17
|
|
|
|
- name: Build
|
|
run: script/cibuild
|
|
|
|
- name: Upload gh-ost binary artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: gh-ost
|
|
path: bin/gh-ost
|