diff --git a/.github/workflows/tang-actions.yaml b/.github/workflows/tang-actions.yaml new file mode 100644 index 0000000..672976d --- /dev/null +++ b/.github/workflows/tang-actions.yaml @@ -0,0 +1,21 @@ +name: build-test +on: + push: + branches: + - main + paths-ignore: + - '**.md' + pull_request: + paths-ignore: + - '**.md' +jobs: + govet: + name: Vet + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: "1.20" + - run: | + go vet ./... \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..447d29d --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib +release/ +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ +.idea +.env +.venv + +# Visual Studio Code settings +.vscode/** +!.vscode/settings.json +!.vscode/launch.json + +# Ignore temporal binary for testing generated by VSCode +./**/__debug_bin + +# outputs from build +Containerfile + +# Pulp Oci Images +compose_files/pulp/pulp-oci-images \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..16aa02a --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/content-services/tang + +go 1.20