rename shutdownTimeout parameter name to terminationTimeout for clarity
#170
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: test | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [ '1.20', '1.21', '1.22', '1.23', '1.24' ] | |
| name: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Print Go version | |
| run: go version | |
| - name: Run tests | |
| run: go test -json ./... > test.json | |
| - name: Annotate tests | |
| if: always() | |
| uses: guyarb/[email protected] | |
| with: | |
| test-results: test.json |