From b58d6bf5ecf1374531e9bbd263b80ff009e48b33 Mon Sep 17 00:00:00 2001 From: aerth Date: Thu, 15 Jun 2017 22:40:37 +0000 Subject: [PATCH 1/3] add travis config --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bef75a2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: go +sudo: false +addons: + apt: + packages: + - xorg-dev + - libx11-dev + - libxrandr-dev + - libxinerama-dev + - libxcursor-dev + - libxi-dev +go: +- 1.8 +- 1.7.4 +- tip +install: +- go get -t ./... +script: +- go test -i -race ./... +- go test -v -race ./... + From c078a5865214ca1bfd81879f8e05383cf4226a27 Mon Sep 17 00:00:00 2001 From: aerth Date: Thu, 15 Jun 2017 22:52:47 +0000 Subject: [PATCH 2/3] Link to travis build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1553de..fdc6ba7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Pixel [![GoDoc](https://godoc.org/github.com/faiface/pixel?status.svg)](https://godoc.org/github.com/faiface/pixel) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/pixel)](https://goreportcard.com/report/github.com/faiface/pixel) [![Join the chat at https://gitter.im/pixellib/Lobby](https://badges.gitter.im/pixellib/Lobby.svg)](https://gitter.im/pixellib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +# Pixel [![GoDoc](https://godoc.org/github.com/faiface/pixel?status.svg)](https://godoc.org/github.com/faiface/pixel) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/pixel)](https://goreportcard.com/report/github.com/faiface/pixel) [![Join the chat at https://gitter.im/pixellib/Lobby](https://badges.gitter.im/pixellib/Lobby.svg)](https://gitter.im/pixellib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/faiface/pixel.svg?branch=master)](https://travis-ci.org/faiface/pixel) A hand-crafted 2D game library in Go. Take a look into the [features](#features) to see what it can do. From b01300dab9be0db445067ed14ad542fa1333cc39 Mon Sep 17 00:00:00 2001 From: aerth Date: Thu, 15 Jun 2017 23:05:00 +0000 Subject: [PATCH 3/3] move button --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fdc6ba7..80496a6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -# Pixel [![GoDoc](https://godoc.org/github.com/faiface/pixel?status.svg)](https://godoc.org/github.com/faiface/pixel) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/pixel)](https://goreportcard.com/report/github.com/faiface/pixel) [![Join the chat at https://gitter.im/pixellib/Lobby](https://badges.gitter.im/pixellib/Lobby.svg)](https://gitter.im/pixellib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/faiface/pixel.svg?branch=master)](https://travis-ci.org/faiface/pixel) +# Pixel [![Build Status](https://travis-ci.org/faiface/pixel.svg?branch=master)](https://travis-ci.org/faiface/pixel) [![GoDoc](https://godoc.org/github.com/faiface/pixel?status.svg)](https://godoc.org/github.com/faiface/pixel) [![Go Report Card](https://goreportcard.com/badge/github.com/faiface/pixel)](https://goreportcard.com/report/github.com/faiface/pixel) [![Join the chat at https://gitter.im/pixellib/Lobby](https://badges.gitter.im/pixellib/Lobby.svg)](https://gitter.im/pixellib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) + A hand-crafted 2D game library in Go. Take a look into the [features](#features) to see what it can do.