Bump github.com/aws/aws-sdk-go from 1.51.21 to 1.55.5 (#391) #168
This file contains 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: Test backup/backup schedule ds | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "**.go" | |
- ".github/workflows/backup.yml" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "**gridscale_backup**" | |
- "gridscale/error-handler/**" | |
- "gridscale/common.go" | |
- "gridscale/config.go" | |
- "gridscale/provider.go" | |
- "gridscale/provider_test.go" | |
- ".github/workflows/backup.yml" | |
jobs: | |
build: | |
name: Backup/Backup schedule AccTest | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: /home/runner/go | |
GRIDSCALE_UUID: ${{ secrets.CI_USER_UUID }} | |
GRIDSCALE_TOKEN: ${{ secrets.CI_API_TOKEN }} | |
GRIDSCALE_URL: ${{ secrets.CI_API_URL }} | |
GRIDSCALE_TF_REQUEST_DELAY_INTERVAL: 2000 | |
GRIDSCALE_TF_MAX_N_RETRIES: 5 | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.21 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Run TestAccdataSourceGridscaleBackupBasic | |
run: make testacc TEST=./gridscale TESTARGS='-run=TestAccdataSourceGridscaleBackupBasic' | |
- name: Run TestAccdataSourceGridscaleBackupScheduleBasic | |
run: make testacc TEST=./gridscale TESTARGS='-run=TestAccdataSourceGridscaleBackupScheduleBasic' | |
- name: Run TestAccResourceGridscaleBackupScheduleBasic | |
run: make testacc TEST=./gridscale TESTARGS='-run=TestAccResourceGridscaleBackupScheduleBasic' |