Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesmith96 committed Dec 11, 2024
0 parents commit dc186d5
Show file tree
Hide file tree
Showing 20 changed files with 1,249 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go

on:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: go list
run: GOPROXY=proxy.golang.org go list -m github.com/loveholidays/go-config-loader@v${{ github.ref_name }}
20 changes: 20 additions & 0 deletions .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Go

on:
push:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: Test
run: make test
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
target/
classes/
.DS_Store

.mvn/timing.properties

*.class
.idea/
.env
/venv
/.venv

*.iml

/**/bin

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# 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/

# Go workspace file
go.work
go.work.sum
.tool-versions
Loading

0 comments on commit dc186d5

Please sign in to comment.