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/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
contents: write

env:
GO_VERSION: 1.23
GO_VERSION: "1.25"

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: "1.23"
GO_VERSION: "1.25"

jobs:
lint-and-test:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ test:
go test -race ./internal/...

test-e2e:
go test -v ./tests/e2e/ -timeout 10m
go test -v ./tests/e2e/ -timeout 10m -count=1
2 changes: 1 addition & 1 deletion cmd/devbox/devbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var root = &cobra.Command{}
var projectName string

var dockerClient client.APIClient
var apiService api.Service
var apiService api.Compose

func main() {
for _, fn := range []func() error{
Expand Down
2 changes: 1 addition & 1 deletion cmd/devbox/restart.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func runRestart(ctx context.Context, p *project.Project, services []string, noDe
return nil
}

func getRunningServices(ctx context.Context, a api.Service, p *project.Project, all bool, filter string) ([]string, error) {
func getRunningServices(ctx context.Context, a api.Compose, p *project.Project, all bool, filter string) ([]string, error) {
opts := project.PsOptions{
Project: p.Project,
All: all,
Expand Down
2 changes: 1 addition & 1 deletion cmd/devbox/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func runRun(ctx context.Context, p *project.Project, command string, args []stri
return nil
}

func isRunning(ctx context.Context, a api.Service, p *project.Project) (bool, error) {
func isRunning(ctx context.Context, a api.Compose, p *project.Project) (bool, error) {
opts := project.PsOptions{
Project: p.Project,
}
Expand Down
228 changes: 116 additions & 112 deletions go.mod

Large diffs are not rendered by default.

553 changes: 264 additions & 289 deletions go.sum

Large diffs are not rendered by default.