izapple2/.circleci/config.yml
2019-12-22 17:11:50 +01:00

11 lines
200 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.12
steps:
- checkout
- run: sudo apt install libsdl2-dev
- run: go get -d ./...
- run: go test ./...