Skip to content

Commit

Permalink
Merge 2fb9d39 into 1d0e3ea
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorel-35 committed May 9, 2021
2 parents 1d0e3ea + 2fb9d39 commit 2c0d33d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Expand Up @@ -8,3 +8,7 @@ updates:
directory: /
schedule:
interval: daily
- package-ecosystem: docker
directory: /
schedule:
interval: daily
11 changes: 8 additions & 3 deletions .github/workflows/go.yml
Expand Up @@ -16,10 +16,15 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.16

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
- name: Tests with coverage
run: go test -race -v -count=1 -coverprofile=coverage.out ./...
- name: Upload Code Coverage
uses: codecov/codecov-action@v1
with:
name: codecov
fail_ci_if_error: true

0 comments on commit 2c0d33d

Please sign in to comment.