Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
8 changes: 8 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ jobs:
examples/go.sum
- run: make go.work
- run: go test ./integration -race
- run: docker-compose version
- run: docker-compose up -d
- run: cp example-opentdf.yaml opentdf.yaml
- run: go run . start &
- run: go install github.com/fullstorydev/grpcurl/cmd/[email protected]
- run: sleep 15
- run: grpcurl -plaintext localhost:9000 list
- run: grpcurl -plaintext localhost:9000 list attributes.AttributesService

image:
name: image build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ With go 1.18 or higher:

### Run

1. `docker-compose -f opentdf-compose.yaml up`
1. `docker-compose up`

2. `goose -dir=./migrations postgres "postgres://postgres:changeme@localhost:5432/opentdf" up`

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion integration/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestMain(m *testing.M) {
req := tc.GenericContainerRequest{
ProviderType: providerType,
ContainerRequest: tc.ContainerRequest{
Image: "public.ecr.aws/docker/library/postgres:15-alpine",
Image: "postgres:15-alpine",
Name: "testcontainer-postgres",
ExposedPorts: []string{"5432/tcp"},

Expand Down