Skip to content

Commit

Permalink
Fix scvals to print in json string (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
chowbao authored Jan 28, 2025
1 parent 53929d8 commit ecfd133
Show file tree
Hide file tree
Showing 27 changed files with 1,619 additions and 431 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
-v ${{ runner.workspace }}/coverage/:/usr/coverage/ \
-e GOOGLE_APPLICATION_CREDENTIALS=/usr/credential.json \
integration-tests \
go test -v -coverprofile=/usr/coverage/coverage.out ./cmd ./internal/transform -timeout 30m
go test -v -coverprofile=/usr/coverage/coverage.out ../cmd ../internal/transform -timeout 30m
- name: Generate Coverage Report
run: |
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
with:
go-version: 1
- name: Build Internal
working-directory: internal
run: go build ./...
run: make build

unit-tests:
runs-on: ubuntu-latest
Expand All @@ -32,5 +31,4 @@ jobs:
with:
go-version: 1
- name: Run Internal Unit Tests
working-directory: internal
run: go test -v -cover ./...
run: make build-libs && cd internal && go test -v -cover ./...
2 changes: 1 addition & 1 deletion .github/workflows/lint-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:

- uses: pre-commit/[email protected]
env:
extra_args: --color=always --files ${{ steps.file_changes.outputs.files}}
extra_args: --color=always --files ${{ steps.file_changes.outputs.files}} --timeout 10m
Loading

0 comments on commit ecfd133

Please sign in to comment.