Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Dec 23, 2023
1 parent f8dbd44 commit d56cf7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: "1.20"
- name: Build
run: |
go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: "1.20"
- name: Build
run: |
go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install: update_libchdb
sudo cp -a libchdb.so /usr/local/lib
# if on Linux run `sudo ldconfig` to update the cache
# if on macOS run `sudo update_dyld_shared_cache` to update the cache
if [[ "$$OSTYPE" == "linux-gnu" ]]; then sudo ldconfig; fi
if [ "$$OSTYPE" == "linux-gnu" ]; then sudo ldconfig; fi

test:
CGO_ENABLED=1 go test -v -coverprofile=coverage.out ./...
Expand Down

0 comments on commit d56cf7a

Please sign in to comment.