Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:

- uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
args: --timeout 3m --verbose
args: --timeout 5m --verbose
version: latest
only-new-issues: true

Expand Down
2 changes: 2 additions & 0 deletions internal/backups/list/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ func TestListBackup(t *testing.T) {
JSON(api.V1BackupsResponse{
Region: "ap-southeast-1",
Backups: []struct {
Id int `json:"id"`
InsertedAt string `json:"inserted_at"`
IsPhysicalBackup bool `json:"is_physical_backup"`
Status api.V1BackupsResponseBackupsStatus `json:"status"`
}{{
Id: 1,
InsertedAt: "2026-02-08 16:44:07",
IsPhysicalBackup: true,
Status: api.V1BackupsResponseBackupsStatusCOMPLETED,
Expand Down
135 changes: 135 additions & 0 deletions pkg/api/client.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions pkg/api/types.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading