Update integrations dep to pull the new default storage API endpoint. #7712
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| merge_group: | |
| types: [checks_requested] | |
| name: Test | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.21.x] | |
| runs-on: | |
| - nscloud-ubuntu-22.04-amd64-8x16-with-cache | |
| - nscloud-cache-size-10gb | |
| - nscloud-cache-tag-foundation-golang | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| cache: false | |
| - name: Setup runner cache | |
| uses: namespacelabs/nscloud-cache-action@v1 | |
| with: | |
| cache: go | |
| - name: Test | |
| run: go test ./... | |
| - name: Check Go Formatting | |
| run: go fmt ./... && git diff --exit-code | |
| - name: Check Go Mod Tidyness | |
| run: go mod tidy && git diff --exit-code |