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