|
# Golang CircleCI 2.0 configuration file
|
|
#
|
|
# Check https://circleci.com/docs/2.0/language-go/ for more details
|
|
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
# specify the version
|
|
- image: liamg/golang-opengl
|
|
working_directory: /aminal
|
|
steps:
|
|
- checkout
|
|
- run: go test -v ./...
|