github.com/podhmo/reflect-shape@v0.4.3/.github/workflows/go.yml (about)

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