izapple2/.circleci/config.yml

12 lines
229 B
YAML

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