build(deps): bump github.com/go-git/go-git/v5 from 5.16.1 to 5.16.2 #454
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint -> Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # Since no branch is specified, this will run on all PRs | |
| # Repository dispatches are triggered throughout the GitHub API. This is used to run the custom integration tests using a specified API host | |
| # in the custom integration test job below | |
| repository_dispatch: | |
| types: [run_integration_tests] | |
| workflow_dispatch: | |
| jobs: | |
| lint-test: | |
| name: Lints and Unit tests | |
| runs-on: macos-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: "1.24.4" | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 | |
| with: | |
| version: latest | |
| args: --timeout=5m | |
| - name: Unit Tests | |
| run: make test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage.out | |
| fail_ci_if_error: false | |
| # Monitor code coverage and TODO/FIXME-type comments | |
| health-score: | |
| needs: lint-test | |
| runs-on: macos-latest | |
| permissions: | |
| checks: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Go | |
| uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version: "1.24.4" | |
| - name: Report health score | |
| uses: slackapi/slack-health-score@d58a419f15cdaff97e9aa7f09f95772830ab66f7 # v0.1.1 | |
| with: | |
| extension: "go" | |
| codecov_token: ${{ secrets.ELAINES_CODECOV_API_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| include: "cmd internal" |