Skip to content

Commit 296712f

Browse files
authored
Move SDK to root directory (#3)
1 parent a35f535 commit 296712f

48 files changed

Lines changed: 271 additions & 275 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
(cd example-1 && npx featurevisor test)
4040
4141
- name: Run Featurevisor project tests against Go SDK
42-
run: go run ./cli/main.go test --projectDirectoryPath=./example-1
42+
run: go run ./cmd/main.go test --projectDirectoryPath=./example-1

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
build:
22
mkdir -p build
3-
go build -o build/featurevisor-go cli/main.go
3+
go build -o build/featurevisor-go cmd/main.go
44

55
test:
6-
go test ./sdk -v
6+
go test ./... -v
77

88
clean:
99
rm -rf build

0 commit comments

Comments
 (0)