feat(api_event_callback): 事件回调接口增加输入框的值 #1511
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: codestyle-check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Set up Check Tool | |
run: | | |
go install github.com/client9/misspell/cmd/misspell@latest | |
- name: Code Style Check | |
run: | | |
ls -alh | |
go build -v ./... | |
gofmt -s | |
go vet ./... | |
misspell -error | |
curl 'https://goreportcard.com/checks' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' --data-raw 'repo=github.com%2Fchyroc%2Flark' |