Skip to content

Commit

Permalink
initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
rbtr committed Feb 6, 2020
0 parents commit 37fcbab
Show file tree
Hide file tree
Showing 49 changed files with 2,936 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .drone.yml
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
20 changes: 20 additions & 0 deletions .gitignore
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/**/*
3 changes: 3 additions & 0 deletions .gitmodules
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
14 changes: 14 additions & 0 deletions .golangci.yml
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
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM scratch
COPY bin/pachinko /pachinko
ENTRYPOINT /pachinko
CMD sort
Loading

0 comments on commit 37fcbab

Please sign in to comment.