diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index eff48f9..61f6e1e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,20 +1,12 @@ -# This workflow will build a golang project. For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go +# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go name: Go on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - go: [ '1.9', '1.10.x', '1.14.x' ] - name: Go ${{ matrix.go }} steps: - uses: actions/checkout@v4 - - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go }} - name: Build - run: go build ./... + run: go build -v ./... - name: Test run: go test -v ./...