MongoDB migrations made simple for go
mongodb migration db
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add basic ci

Signed-off-by: softprops <d.tangren@gmail.com>

+18
+18
.tangled/workflows/ci.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - go 10 + 11 + steps: 12 + - name: lint 13 + command: | 14 + curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.11.4 15 + golangci-lint run ./... 16 + - name: test 17 + command: | 18 + go test -v ./...