Skip to content

Commit

Permalink
add initial action and go.mod (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rverdile authored Dec 11, 2023
1 parent 0aeff07 commit e809983
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tang-actions.yaml
Original file line number Diff line number Diff line change
@@ -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 ./...
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/content-services/tang

go 1.20

0 comments on commit e809983

Please sign in to comment.