izapple2/.circleci/config.yml

12 lines
229 B
YAML
Raw Normal View History

2019-06-11 00:04:23 +02:00
version: 2
jobs:
build:
docker:
2019-12-22 16:55:40 +01:00
- image: circleci/golang:1.12
2019-06-11 00:04:23 +02:00
steps:
- checkout
2020-06-07 18:59:25 +02:00
- run: sudo apt update
2019-12-22 17:11:50 +01:00
- run: sudo apt install libsdl2-dev
2019-06-11 00:04:23 +02:00
- run: go get -d ./...
2019-12-22 16:55:40 +01:00
- run: go test ./...