github.com/itsabgr/go-handy@v0.0.0-20220724000257-022d51f2b9c6/.github/workflows/go.yml (about)

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