github.com/tailscale/sqlite@v0.0.0-20240515181108-c667cbe57c66/.github/workflows/test-sqlite.yml (about)

     1  name: test-sqlite
     2  
     3  on:
     4    push:
     5      branches: [ main ]
     6    pull_request:
     7      types: [opened, reopened, synchronize]
     8  
     9  jobs:
    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@v4
    17        with:
    18          go-version: '1.22'
    19  
    20      - name: Build
    21        run: go build -v ./...
    22  
    23      - name: Test
    24        run: go test -v ./...
    25  
    26      - name: Race
    27        run: go test -v -race ./...