github.com/cosmos/cosmos-proto@v1.0.0-beta.3/.github/workflows/go.yml (about)

     1  name: Go
     2  
     3  on:
     4    push:
     5      branches: [ main ]
     6    pull_request:
     7  
     8  jobs:
     9  
    10    build:
    11      runs-on: ubuntu-latest
    12      steps:
    13      - uses: actions/checkout@v3
    14  
    15      - name: Set up Go
    16        uses: actions/setup-go@v3
    17        with:
    18          go-version: 1.18
    19  
    20      - name: Build
    21        run: go build -v ./...
    22  
    23      - name: Test
    24        run: go test -v ./...