feat: 增加store函数; 向下兼容允许【】()四个字符作为变量后继字符 #75
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
on: | |
push: | |
branches: [ "main" ] | |
name: Test & Lint | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- run: go mod tidy | |
- run: go get | |
- run: go generate ./... | |
# https://blog.jetbrains.com/go/2019/04/03/profiling-go-applications-and-tests/ | |
- run: go test -v -bench=^BenchmarkInBoundsChannels$ -cpuprofile=cpu.out -memprofile mem.out . | |
# 第一遍是冷启动,再进行一次测试 | |
- run: go test -v . -count=1 | |
- run: go test -v . -count=1 | |
- run: go test -v . -count=1 | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cpu-profile | |
path: ./cpu.out | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mem-profile | |
path: ./mem.out | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.18' | |
- run: go mod tidy | |
- run: go get | |
- run: go generate ./... | |
- name: Go vet | |
run: go vet -unreachable=false ./... | |
- name: GolangCI-Lint | |
uses: golangci/golangci-lint-action@v3 | |
if: github.event.name == 'pull_request' | |
with: | |
go-version: '1.18' | |
version: 'v1.57.2' | |
args: '--timeout 9999s' | |
only-new-issues: true | |
skip-pkg-cache: true | |
skip-build-cache: true | |
- name: GolangCI-Lint | |
uses: golangci/golangci-lint-action@v3 | |
if: github.event.name != 'pull_request' | |
with: | |
version: 'v1.51.2' | |
args: '--timeout 9999s' |