Added CircleCI (#289)

* Added CircleCI

* Removed the github workflow
This commit is contained in:
Tim Sarbin 2020-02-02 18:23:32 -05:00 committed by GitHub
parent 0b7a433ed2
commit 83f7301705
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 32 deletions

11
.circleci/config.yml Normal file
View File

@ -0,0 +1,11 @@
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 .

View File

@ -1,32 +0,0 @@
name: Pull Request Checker
on:
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl1-mesa-dev libsdl2-dev libasound2-dev
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .