⬆️ Bump github.com/aws/aws-sdk-go-v2 from 1.32.2 to 1.36.0 #313
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: Go | |
| on: | |
| push: | |
| branches: ['**'] | |
| paths: | |
| - .github/workflows/go.yml | |
| - '**/*.go' | |
| - go.mod | |
| - go.sum | |
| pull_request: | |
| branches: ['master'] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/attoleap/objekt/builder:latest | |
| options: --user 1001 --workdir /buildman | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Go Format | |
| run: gofmt -s -w . && git diff --exit-code | |
| - name: Go Vet | |
| run: go vet ./... | |
| - name: Go Tidy | |
| run: go mod tidy && git diff --exit-code | |
| - name: Go Mod | |
| run: go mod download | |
| - name: Go Mod Verify | |
| run: go mod verify | |
| - name: Go Generate | |
| run: go generate ./... && git diff --exit-code | |
| - name: Go Build | |
| run: go build -o /dev/null ./... |