From a7d3bfe94d581626fe6038caea35a1958623a560 Mon Sep 17 00:00:00 2001 From: catatsuy Date: Wed, 8 Apr 2020 14:04:00 +0900 Subject: [PATCH] add GitHub Actions for CI --- .github/workflows/go.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..78b04f2 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,24 @@ +name: Go +on: [push] +jobs: + + test: + name: Build + runs-on: ubuntu-latest + strategy: + matrix: + go: [ '1.14.x' ] + steps: + + - name: Set up Go + uses: actions/setup-go@v1 + with: + go-version: ${{ matrix.go }} + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: test + run: | + make check