Skip to content

Commit

Permalink
*: remove debug flag and update to g1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
keyuchang committed Aug 9, 2022
1 parent 450337d commit d20534e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/code_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.18

- name: Check out source code
uses: actions/checkout@v1
Expand All @@ -38,3 +38,5 @@ jobs:

- name: Run staticcheck
run: staticcheck -f stylish ./...
- name: Run test
run: make test
2 changes: 1 addition & 1 deletion Utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ package utils
var DebugFlags bool = false
var PackFlags bool = true
var HttpDebug bool = false
var DebugPackTab bool = true
var DebugPackTab bool = false
7 changes: 6 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
module github.com/acekingke/yaccgo

go 1.15
go 1.18

require github.com/spf13/cobra v1.2.1

require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)

0 comments on commit d20534e

Please sign in to comment.