...

Text file src/github.com/bluekeyes/hatpear/.github/workflows/go.yml

Documentation: github.com/bluekeyes/hatpear/.github/workflows

     1name: Go
     2on: [push]
     3jobs:
     4  test:
     5    name: Test
     6    runs-on: ubuntu-latest
     7    steps:
     8      - name: Set up Go 1.13
     9        uses: actions/setup-go@v1
    10        with:
    11          go-version: 1.13
    12        id: go
    13
    14      - name: Check out code into the Go module directory
    15        uses: actions/checkout@v1
    16
    17      - name: Test
    18        run: go test -v
    19        
    20      - name: Vet
    21        run: go vet

View as plain text