This repository was archived by the owner on Dec 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ lint :
13+ runs-on : ubuntu-20.04
14+ name : lint
15+ steps :
16+ - name : Checkout
17+ uses : actions/checkout@v2
18+
19+ - name : Lint
20+ run : make lint
Original file line number Diff line number Diff line change 1+ name : Test and Benchmarks
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ build :
13+ runs-on : ${{ matrix.os }}
14+ name : Run test and benchmarks
15+ strategy :
16+ matrix :
17+ os : [macos-10.15, ubuntu-20.04, windows-2019]
18+ go : [1.16]
19+
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@v2
23+
24+ - name : Setup Go ${{matrix.go}}
25+ uses : actions/setup-go@v2
26+ with :
27+ go-version : ${{matrix.go}}
28+
29+ - name : tests
30+ run : make test
31+
32+ - name : benchmarks
33+ run : make bench
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- golangci_lint_version =1.21.0
1+ golangci_lint_version =1.41.1
22
33all : analysis test
44
1212 gofmt -s -w .
1313
1414bench :
15- go test -bench=. ./...
15+ go test -bench=. -benchmem ./...
1616
1717bench/memory/% :
1818 @mkdir -p profilling
Original file line number Diff line number Diff line change 11module github.com/madlambda/spells
22
3- go 1.11
3+ go 1.16
You can’t perform that action at this time.
0 commit comments