fix(deps): update aws-sdk-go-v2 monorepo #225
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: Build & Test | |
| "on": | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| schedule: | |
| - cron: 01 13 * * SAT | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| - windows-latest | |
| runs-on: ${{ matrix.os }} | |
| name: Build & Test | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '>=1.21.1' | |
| - name: Build & Test | |
| run: | | |
| cp myec2/hosts.yaml . | |
| go build -v | |
| go test -v ./... | |
| go test --cover -v ./... | |
| go test --race -v ./... | |
| go test --bench -v ./... | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| args: release --snapshot --skip=publish --clean | |
| - name: Colored Output Test | |
| if: runner.os == 'Linux' | |
| shell: script -q -e -c "bash {0}" | |
| run: go run main.go --version |