Skip to content

Commit

Permalink
COSI-58: add-dependabot-and-codecov-in-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
anurag4DSB committed Nov 12, 2024
1 parent d1650db commit b404ea6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file


version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
time: "07:00"
timezone: "Europe/Paris"
open-pull-requests-limit: 10
reviewers:
- "scality/object"
commit-message:
prefix: "gomod"
include: "scope"
labels:
- "gomod"
- "dependencies"


- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "08:00"
reviewers:
- "scality/object"
commit-message:
prefix: "github-actions"
include: "scope"
labels:
- "github-actions"
- "dependencies"
6 changes: 6 additions & 0 deletions .github/workflows/ci-build-and-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
- name: Run tests
run: make test

- name: Upload test coverage to codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: scality/cosi-driver

dev-container-build:
permissions:
contents: read
Expand Down

0 comments on commit b404ea6

Please sign in to comment.