github.com/weaviate/sroar@v0.0.0-20230210105426-26108af5465d/.github/workflows/go.yml (about) 1 name: Go 2 3 on: 4 push: 5 branches: 6 - '**' 7 tags: 8 - '**' 9 pull_request: 10 branches: 11 - '**' 12 13 jobs: 14 tests: 15 runs-on: ubuntu-latest 16 steps: 17 - uses: actions/checkout@v3 18 19 - name: Set up Go 20 uses: actions/setup-go@v3 21 with: 22 go-version: 1.19 23 cache: true 24 25 - name: Test 26 run: go test -v ./...