diff --git a/.dagger/main.go b/.dagger/main.go index 7aca8b4..c8101c7 100644 --- a/.dagger/main.go +++ b/.dagger/main.go @@ -32,6 +32,6 @@ func (m *Rip) Test( From("golang:1.24.3"). WithDirectory("/src/rip", source). WithWorkdir("/src/rip"). - WithExec([]string{"go", "test", "./..."}). + WithExec([]string{"go", "test", "-v", "./..."}). Stdout(ctx) } diff --git a/.github/workflows/dagger.yaml b/.github/workflows/dagger.yaml index 6d1c883..447ca69 100644 --- a/.github/workflows/dagger.yaml +++ b/.github/workflows/dagger.yaml @@ -12,7 +12,7 @@ on: jobs: build-publish: - runs-on: ubuntu-latest + runs-on: depot-ubuntu-latest,dagger=0.18.4 permissions: contents: read packages: write diff --git a/dagger.json b/dagger.json index 36bc31c..09c15e6 100644 --- a/dagger.json +++ b/dagger.json @@ -4,5 +4,12 @@ "sdk": { "source": "go" }, + "dependencies": [ + { + "name": "go", + "source": "github.com/dolanor/daggerverse/go", + "pin": "91f4dfa24ccc4895696fc98a6cbe71fd5d4d48aa" + } + ], "source": ".dagger" }