build(deps): bump github.com/aws/aws-sdk-go-v2/credentials from 1.19.2 to 1.19.7 #853
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: | |
| branches: [ master ] | |
| # Use pull_request_target instead of pull_request (we need some S3 keys to a test environment) | |
| pull_request_target: | |
| types: [opened, ready_for_review] | |
| name: Test | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.24.x, 1.25.x] | |
| platform: [macos-latest, ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Install staticcheck | |
| run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
| shell: bash | |
| - name: Install golint | |
| run: go install golang.org/x/lint/golint@latest | |
| shell: bash | |
| - name: Update PATH | |
| run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
| shell: bash | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Fmt | |
| if: matrix.platform != 'windows-latest' # :( | |
| run: "diff <(gofmt -d .) <(printf '')" | |
| shell: bash | |
| - name: Vet | |
| run: go vet ./... | |
| - name: Staticcheck | |
| run: staticcheck ./... | |
| #- name: Lint | |
| # run: golint ./... | |
| - name: Test | |
| env: | |
| S3DEPLOY_TEST_KEY: ${{ secrets.S3DEPLOY_TEST_KEY }} | |
| S3DEPLOY_TEST_SECRET: ${{ secrets.S3DEPLOY_TEST_SECRET }} | |
| run: go test -race ./... -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic | |
| - name: Upload coverage | |
| if: success() && matrix.platform == 'ubuntu-latest' && !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' | |
| run: | | |
| curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step | |
| curl -Os https://uploader.codecov.io/latest/linux/codecov | |
| curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM | |
| curl -Os https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig | |
| gpgv codecov.SHA256SUM.sig codecov.SHA256SUM | |
| shasum -a 256 -c codecov.SHA256SUM | |
| chmod +x codecov | |
| ./codecov |