check the buffer length read in constant meta, if it's not equal to t… #166
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Grule-Rule-Engine | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Fetching dependencies | |
run : go get -v -t -d ./... | |
- name: Install GoLint | |
run : | | |
go get -d golang.org/x/lint/golint | |
go install golang.org/x/lint/golint | |
echo $GOBIN | |
- name: Execute test | |
run : make test-short |