github.com/nutsdb/nutsdb@v1.0.4/.github/workflows/ci.yml (about)

     1  name: ci
     2  on:
     3    pull_request:
     4    push:
     5      branches:
     6      - master
     7  
     8  jobs:
     9    unit-test-linux:
    10      runs-on: ubuntu-latest
    11      steps:
    12      - uses: actions/checkout@v3
    13      - uses: actions/setup-go@v3
    14        with:
    15          go-version: '1.18'
    16      - name: run unit tests
    17        run: go test ./... -race