Skip to content

Commit

Permalink
feat: lf => crlf
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuliquan committed May 25, 2024
1 parent df9c02e commit a2b04af
Show file tree
Hide file tree
Showing 33 changed files with 4,392 additions and 4,393 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,23 @@ name: Go

on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"

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

- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...
326 changes: 163 additions & 163 deletions README.md

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions const.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package lucene_parser

type QueryType uint32

const (
LUCENE_QUERY QueryType = iota
OR_QUERY
OS_QUERY
AND_QUERY
ANS_QUERY
NOT_QUERY
FIELD_QUERY
PAREN_QUERY
)
package lucene_parser

type QueryType uint32

const (
LUCENE_QUERY QueryType = iota
OR_QUERY
OS_QUERY
AND_QUERY
ANS_QUERY
NOT_QUERY
FIELD_QUERY
PAREN_QUERY
)
Loading

0 comments on commit a2b04af

Please sign in to comment.