-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 37fcbab
Showing
49 changed files
with
2,936 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
kind: pipeline | ||
type: docker | ||
name: default | ||
|
||
steps: | ||
- name: fetch | ||
image: alpine/git | ||
commands: | ||
- git fetch --tags | ||
|
||
- name: testing | ||
image: golang:latest | ||
commands: | ||
- make test | ||
|
||
# - name: lint | ||
# image: golangci/golangci-lint | ||
# commands: | ||
# - golangci-lint run -v | ||
|
||
- name: release | ||
image: golang:latest | ||
when: | ||
branch: | ||
- master | ||
event: | ||
- tag | ||
environment: | ||
GITHUB_TOKEN: | ||
from_secret: GITHUB_TOKEN | ||
commands: | ||
- curl -sL https://git.io/goreleaser | bash | ||
|
||
trigger: | ||
branch: | ||
exclude: | ||
- github-pages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# 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/ | ||
bin/ | ||
pachinko* | ||
.vscode | ||
.pachinko.yaml | ||
!docs/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "www/themes/ananke"] | ||
path = www/themes/ananke | ||
url = https://github.com/budparr/gohugo-theme-ananke.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
run: | ||
tests: false | ||
|
||
linters: | ||
enable-all: true | ||
disable: | ||
- wsl | ||
- lll | ||
- funlen | ||
- godox | ||
- gomnd | ||
- gocognit | ||
- gochecknoglobals | ||
- gochecknoinits |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM scratch | ||
COPY bin/pachinko /pachinko | ||
ENTRYPOINT /pachinko | ||
CMD sort |
Oops, something went wrong.