10 changed files with 22 additions and 42 deletions
@ -1,14 +0,0 @@
|
||||
arch: amd64 |
||||
environment: |
||||
PROJECT_NAME: 'joker-cribbage' |
||||
CGO_ENABLED: '1' |
||||
GO111MODULE: 'on' |
||||
image: freebsd/latest |
||||
packages: |
||||
- go |
||||
sources: |
||||
- https://git.sr.ht/~tslocum/joker-cribbage |
||||
tasks: |
||||
- test: | |
||||
cd $PROJECT_NAME |
||||
go test ./... |
@ -1,14 +0,0 @@
|
||||
arch: x86_64 |
||||
environment: |
||||
PROJECT_NAME: 'joker-cribbage' |
||||
CGO_ENABLED: '1' |
||||
GO111MODULE: 'on' |
||||
image: alpine/edge |
||||
packages: |
||||
- go |
||||
sources: |
||||
- https://git.sr.ht/~tslocum/joker-cribbage |
||||
tasks: |
||||
- test: | |
||||
cd $PROJECT_NAME |
||||
go test ./... |
@ -0,0 +1,8 @@
|
||||
stages: |
||||
- test |
||||
|
||||
test: |
||||
image: golang:latest |
||||
stage: test |
||||
script: |
||||
- go test -v ./... |
@ -1,17 +1,17 @@
|
||||
# joker-cribbage |
||||
[](https://godoc.org/git.sr.ht/~tslocum/joker-cribbage) |
||||
[](https://builds.sr.ht/~tslocum/joker-cribbage) |
||||
[](https://godoc.org/gitlab.com/tslocum/joker-cribbage) |
||||
[](https://gitlab.com/tslocum/joker-cribbage/commits/master) |
||||
[](https://liberapay.com/rocketnine.space) |
||||
|
||||
Cribbage scoring library based on [joker](https://git.sr.ht/~tslocum/joker) |
||||
Cribbage scoring library based on [joker](https://gitlab.com/tslocum/joker) |
||||
|
||||
## Documentation |
||||
|
||||
Documentation is available via [godoc](https://godoc.org): |
||||
|
||||
- [joker](https://godoc.org/git.sr.ht/~tslocum/joker) |
||||
- [joker-cribbage](https://godoc.org/git.sr.ht/~tslocum/joker-cribbage) |
||||
- [joker](https://godoc.org/gitlab.com/tslocum/joker) |
||||
- [joker-cribbage](https://godoc.org/gitlab.com/tslocum/joker-cribbage) |
||||
|
||||
## Support |
||||
|
||||
Please share issues/suggestions [here](https://todo.sr.ht/~tslocum/joker). |
||||
Please share issues/suggestions [here](https:/gitlab.com/tslocum/joker-cribbage/issues). |
||||
|
@ -1,5 +1,5 @@
|
||||
module git.sr.ht/~tslocum/joker-cribbage |
||||
module gitlab.com/tslocum/joker-cribbage |
||||
|
||||
go 1.13 |
||||
|
||||
require git.sr.ht/~tslocum/joker v0.1.2-0.20200116142638-b0126631fff3 |
||||
require gitlab.com/tslocum/joker v0.1.2-0.20200123002530-2570d6c23aff |
||||
|
@ -1,2 +1,2 @@
|
||||
git.sr.ht/~tslocum/joker v0.1.2-0.20200116142638-b0126631fff3 h1:oAv5q5P8Zhg8KMF8DhI7cVwr3WS3WK2fJo4PG7gGdNI= |
||||
git.sr.ht/~tslocum/joker v0.1.2-0.20200116142638-b0126631fff3/go.mod h1:ILjUVYQbVWJOBnDmpzF2vivl/Nhl7of+l/u42g0K598= |
||||
gitlab.com/tslocum/joker v0.1.2-0.20200123002530-2570d6c23aff h1:jZ4Odb8GyzfKhltZNA9YOdugMwGhl5YZQvzEBjoU3uM= |
||||
gitlab.com/tslocum/joker v0.1.2-0.20200123002530-2570d6c23aff/go.mod h1:bxTQ0FFmBP465r9z76zcm97S4Ld9eCLa3q20TyVM82A= |
||||
|
Loading…
Reference in new issue