ci: update Go version to 1.24.12 in Semaphore configuration #898
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
| on: [push, pull_request] | |
| name: Test | |
| jobs: | |
| unit-testing: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.23.x | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Install gotestsum | |
| run: go install gotest.tools/gotestsum@latest | |
| - name: Test | |
| run: gotestsum --format short-verbose --packages="./..." -- -p 1 |