1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-07 00:10:43 +00:00
OpenDiablo2/.circleci/config.yml
Tim Sarbin 83f7301705
Added CircleCI (#289)
* Added CircleCI

* Removed the github workflow
2020-02-02 18:23:32 -05:00

12 lines
301 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.13
working_directory: /go/src/github.com/OpenDiablo2/OpenDiablo2
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...
- run: go build .