Skip to content

Commit

Permalink
Fixing circle
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Suderman committed Oct 2, 2019
1 parent 03d1e4c commit 775b178
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
13 changes: 5 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ references:
sudo dpkg -i goreleaser.deb
jobs:
build:
test:
working_directory: /go/src/github.com/fairwindsops/rbac-lookup

docker:
- image: circleci/golang:1.11
environment:
GO111MODULE: "on"

steps:
- checkout
- run: go mod download && go mod verify
Expand All @@ -26,12 +25,10 @@ jobs:

release:
working_directory: /go/src/github.com/fairwindsops/rbac-lookup

docker:
- image: circleci/golang:1.11
environment:
GO111MODULE: "on"

steps:
- checkout
- run: go mod download && go mod verify
Expand All @@ -40,15 +37,15 @@ jobs:

workflows:
version: 2
build:
test-and-release:
jobs:
- build:
- test:
filters:
branches:
only: /.*/
release:
jobs:
- release:
requires:
- test
filters:
branches:
ignore: /.*/
Expand Down
1 change: 0 additions & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ Below is a list of work we plan to get done this quarter. Some more details can

* Add contributing instructions
* Add release instructions

0 comments on commit 775b178

Please sign in to comment.