diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bf6944e71b..dea47bd1be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,7 @@ updates: directory: / schedule: interval: daily +- package-ecosystem: docker + directory: / + schedule: + interval: daily diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1bd0a1f918..807d94d1c8 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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