izapple2/.circleci/config.yml

12 lines
221 B
YAML
Raw Normal View History

2019-06-10 22:04:23 +00:00
version: 2
jobs:
build:
docker:
2022-04-18 14:17:42 +00:00
- image: cimg/go:1.18
2019-06-10 22:04:23 +00:00
steps:
- checkout
2020-06-07 16:59:25 +00:00
- run: sudo apt update
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 ./...