diff --git a/.github/workflows/golang-test.yml b/.github/workflows/golang-test.yml index c5e3383166a..920a0f8aeb0 100644 --- a/.github/workflows/golang-test.yml +++ b/.github/workflows/golang-test.yml @@ -18,4 +18,33 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - name: Test - run: go test ./... \ No newline at end of file + run: go test ./... + + test_build: + strategy: + matrix: + os: [ windows, linux, macos ] + go-version: [1.16.x] + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + + - name: Cache Go modules + uses: actions/cache@v1 + with: + path: ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- + + - name: Install modules + run: go mod tidy + + - name: run build + run: GOOS=${{ matrix.go-version }} go build . \ No newline at end of file