diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 14c2668..6e98b5f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,17 +7,22 @@ updates: open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" - package-ecosystem: gomod directory: "/" schedule: - interval: weekly - open-pull-requests-limit: 10 - labels: - - T:dependencies - - package-ecosystem: docker - directory: "/docker" - schedule: - interval: weekly + interval: daily open-pull-requests-limit: 10 labels: - T:dependencies + # Group all patch updates into a single PR + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 186cd74..408b21f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,12 +27,12 @@ jobs: with: go-version-file: ./go.mod - name: Run unit test - run: make test - - name: upload coverage report - uses: codecov/codecov-action@v3.1.4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.txt + run: echo "No unit tests yet" + # - name: upload coverage report + # uses: codecov/codecov-action@v3.1.4 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} + # file: ./coverage.txt integration_test: name: Run Integration Tests