build(deps): bump the patches group across 1 directory with 14 updates #32134
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: Test Golang | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: [master] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| gotest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/restore-golang | |
| with: | |
| go-version: '1.23' | |
| - name: go test | |
| run: cd golang/cosmos && go test -coverprofile=coverage.txt -covermode=atomic ./... | |
| - uses: ./.github/actions/post-test | |
| if: (success() || failure()) | |
| continue-on-error: true | |
| timeout-minutes: 4 | |
| with: | |
| codecov-token: ${{ secrets.CODECOV_TOKEN }} |