We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daab0fd commit dbaf293Copy full SHA for dbaf293
2 files changed
.github/workflows/basictests.yml
@@ -17,6 +17,14 @@ jobs:
17
go-version: ${{ matrix.go-version }}
18
- name: Checkout code
19
uses: actions/checkout@v4
20
+ - name: Check formatting
21
+ run: |
22
+ # Check formatting of all Go files in the project
23
+ if [ "$(gofmt -s -l $(find . -name "*.go" -type f) | wc -l)" -gt 0 ]; then
24
+ echo "The following files are not formatted with go fmt:"
25
+ gofmt -s -l $(find . -name "*.go" -type f)
26
+ exit 1
27
+ fi
28
- name: Test
29
run: |
30
go build -tags appengine
smat.go
@@ -78,8 +78,6 @@ type actionRecord struct {
78
PairSnapshots []string // base64-encoded MarshalBinary of each pair's Bitmap
79
}
80
81
-var ()
82
-
83
type smatPair struct {
84
bm *Bitmap
85
bs *bitset.BitSet
0 commit comments