Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
6 changes: 3 additions & 3 deletions .github/workflows/go_fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
go generate
# go generate fuzz.go
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: go-test-utils
path: ${{ env.GOBIN }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
# go generate

- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: go-test-utils
path: ${{ env.GOBIN }}
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
fi

- name: Upload TestCases
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: steps.check_files.outputs.files_exists == 'true'
with:
name: go-fuzz-testdata
Expand Down
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,4 @@ lint: $(GOLANGCI) ## Runs golangci-lint with predefined configuration
golangci-lint version
golangci-lint run -c .golangci.yaml ./...


release:
@sh scripts/release.sh



.PHONY: lint lint-prepare clean build unittest
2 changes: 1 addition & 1 deletion db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func testMW(t *testing.T, config DBConfig) {

switch i % 4 {
case 0:
query = "select 1'"
query = "select '1'"
mock.ExpectQuery(query)
resolver.Query(query)
case 1:
Expand Down
2 changes: 1 addition & 1 deletion generate_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//go:build generate

//go:generate go install github.com/mfridman/tparse@latest
//go:generate go install github.com/mfridman/tparse@v0.15.0
//go:generate go install gotest.tools/gotestsum@latest
//go:generate tparse -v
//go:generate gotestsum --version
Expand Down