Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement generic pool & generic tree #20

Merged
merged 5 commits into from
Oct 10, 2024
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
23 changes: 11 additions & 12 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@ name: Go

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23

- name: Build
run: go build -v ./...
- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
- name: Test
run: go test -v ./...
12 changes: 7 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
module github.com/geseq/orderbook

go 1.17
go 1.23

require (
fortio.org/fortio v1.38.0
fortio.org/fortio v1.67.1
github.com/geseq/udecimal v0.0.0-20211126195629-659dde5a92d8
github.com/loov/hrtime v1.0.3
github.com/stretchr/testify v1.8.0
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
golang.org/x/text v0.3.7
golang.org/x/sys v0.26.0
golang.org/x/text v0.19.0
)

require (
fortio.org/log v1.17.1 // indirect
fortio.org/struct2env v0.4.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kortschak/goroutine v1.1.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/exp v0.0.0-20220713135740-79cabaa25d75 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
168 changes: 14 additions & 154 deletions go.sum

Large diffs are not rendered by default.

177 changes: 0 additions & 177 deletions gotemplate_nodeTreePool.go

This file was deleted.

Loading
Loading