Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernize CircleCI config #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions circle.yml → .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
version: 2.1

machine:
timezone: America/Los_Angeles
environment:
Expand All @@ -18,3 +21,23 @@ dependencies:
test:
override:
- cd ~/.go_workspace/src/github.com/remind101/deploy && make test && make vet

workflows:
default:
jobs:
- debian
- alpine

jobs:
debian:
docker:
- image: library/golang:latest
steps:
- checkout
- run: make
alpine:
docker:
- image: library/golang:latest-alpine
steps:
- checkout
- run: make