chore(deps): bump golang.org/x/text from 0.33.0 to 0.34.0 #3069
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: Unit Tests | |
| permissions: | |
| contents: read | |
| actions: read | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| jobs: | |
| go-tests: | |
| name: Run Unit Tests | |
| strategy: | |
| matrix: | |
| go-version: ["1.24", "1.25"] | |
| platform: [ubuntu-latest] | |
| fail-fast: false | |
| runs-on: ${{ matrix.platform }} | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| id: go | |
| - name: Restore Go Cache | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 | |
| with: | |
| path: | | |
| ~/.cache/go-build | |
| ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go-${{ matrix.go-version }}- | |
| - name: Run Tests | |
| env: | |
| TEST_COUNT: 1 | |
| TEST_RACE_HISTORY_SIZE: 5 | |
| TEST_TIMEOUT: 5m | |
| TEST_OPTS: "" | |
| run: make go-test | |
| - name: Debug on Failure | |
| if: ${{ failure() }} | |
| uses: mxschmitt/action-tmate@c0afd6f790e3a5564914980036ebf83216678101 # v3.23 |