Skip to content

Commit

Permalink
ci: remove -v flag from go steps
Browse files Browse the repository at this point in the history
  • Loading branch information
xNaCly committed May 9, 2023
1 parent 5b18e73 commit 385bde0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
go-version: 'stable'

- name: Build
run: go build -v ./...
run: go build ./...

- name: Unit Test
run: go test -v ./...
run: go test ./...

- name: Fuzzing Test Lexer
run: cd lexer && go test . -fuzz=. -fuzztime=5s

0 comments on commit 385bde0

Please sign in to comment.