Skip to content

Commit

Permalink
chore: copier update
Browse files Browse the repository at this point in the history
  • Loading branch information
oclaussen committed Oct 6, 2022
1 parent 54c2304 commit 2482885
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
version: "2"

plugins:
fixme:
enabled: true
gofmt:
enabled: true
golint:
enabled: true
govet:
enabled: true
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v0.1.0
_commit: v0.1.1
_src_path: https://github.com/wabenet/copier-dodo-plugin
author_email: ole.claussen@wabenet.com
author_name: Ole Claussen
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
go-version: 1.18

- name: Test and coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
run: go test -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./...

- name: Upload to codecov
run: bash <(curl -s https://codecov.io/bash)
Expand All @@ -58,5 +58,5 @@ jobs:
- name: Upload to codeclimate
run: |
go test -race -coverprofile=c.out -covermode=atomic ./...
go test -race -coverprofile=c.out -covermode=atomic -coverpkg=./... ./...
./cc-test-reporter after-build -t gocov -p $(go list -m)
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
![release](https://img.shields.io/github/v/release/wabenet/dodo-docker?sort=semver)
![build](https://img.shields.io/github/workflow/status/wabenet/dodo-docker/CI?logo=github)
![codecov](https://img.shields.io/codecov/c/github/wabenet/dodo-docker?logo=codecov)
![codeclimate](https://img.shields.io/codeclimate/maintainability/wabenet/dodo-docker?logo=codeclimate)
![license](https://img.shields.io/github/license/wabenet/dodo-docker)

# dodo docker plugin

Adds support for the Docker daemon as a dodo runtime plugin.
Expand Down
2 changes: 1 addition & 1 deletion dodo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ backdrops:
FROM golang:1.18
RUN apt-get update && apt-get install -y git bash curl tree make
RUN go install github.com/goreleaser/goreleaser@latest
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.49.0
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.0
volumes:
- "{{ projectRoot }}:/build"
- "{{ projectRoot }}/.cache:/go/pkg/mod"
Expand Down

0 comments on commit 2482885

Please sign in to comment.