Skip to content

Commit

Permalink
resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Koustavd18 committed Aug 12, 2024
2 parents a76b070 + 3ba3e28 commit 8b1945c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
name: Go Build and Test

on:
pull_request_target:
types: [opened,synchronize]
pull_request

jobs:
build:

build-and-test:
name: Build and Test the Go code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Checkout the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'

go-version: '1.22.5'
- name: make verification
run: make verifiers

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

- name: Test
run: go test -v ./...
3 changes: 0 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,3 @@ issues:
- should have comment or be unexported
- time-naming
- error strings should not be capitalized or end with punctuation or a newline

service:
golangci-lint-version: 1.43.0 # use the fixed version to not introduce new linters unexpectedly
3 changes: 3 additions & 0 deletions cmd/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ var (
saveFilterFlag = "save-as"
saveFilterShort = "s"
// save filter with time flags
// save filter with time flags
saveFilterTimeFlag = "with-time"
saveFilterTimeShort = "w"

// interactiveFlag = "interactive"
// interactiveFlagShort = "i"
// interactiveFlag = "interactive"
// interactiveFlagShort = "i"
)

var query = &cobra.Command{
Expand Down

0 comments on commit 8b1945c

Please sign in to comment.