izapple2/.circleci/config.yml

11 lines
200 B
YAML
Raw Normal View History

2019-06-10 22:04:23 +00:00
version: 2
jobs:
build:
docker:
2019-12-22 15:55:40 +00:00
- image: circleci/golang:1.12
2019-06-10 22:04:23 +00:00
steps:
- checkout
2019-12-22 16:11:50 +00:00
- run: sudo apt install libsdl2-dev
2019-06-10 22:04:23 +00:00
- run: go get -d ./...
2019-12-22 15:55:40 +00:00
- run: go test ./...