Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/basictests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Check formatting
run: |
# Check formatting of all Go files in the project
if [ "$(gofmt -s -l $(find . -name "*.go" -type f) | wc -l)" -gt 0 ]; then
echo "The following files are not formatted with go fmt:"
gofmt -s -l $(find . -name "*.go" -type f)
exit 1
fi
- name: Test
run: |
go build -tags appengine
Expand Down
2 changes: 0 additions & 2 deletions smat.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ type actionRecord struct {
PairSnapshots []string // base64-encoded MarshalBinary of each pair's Bitmap
}

var ()

type smatPair struct {
bm *Bitmap
bs *bitset.BitSet
Expand Down
Loading