Fix upload conflict failing with 2501 on a leftover draft link #12
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 and Test | |
| on: push | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get sources | |
| uses: actions/checkout@v6 | |
| - name: Set up Go 1.26 | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26' | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.9.0 | |
| args: --timeout=180s | |
| skip-cache: true | |
| - name: Run tests | |
| run: go test -v ./... | |
| - name: Run tests with race check | |
| run: go test -v -race ./... |