-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from samcm/feat/caching
feat: HTTP & Internal caching
- Loading branch information
Showing
17 changed files
with
726 additions
and
253 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Go Test | ||
|
||
on: | ||
pull_request: | ||
|
||
workflow_dispatch: | ||
branches: [ '**' ] | ||
|
||
jobs: | ||
full_ci: | ||
strategy: | ||
matrix: | ||
go_version: [ 1.18.x ] | ||
|
||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: ${{ matrix.go_version }} | ||
|
||
- name: run tests | ||
run: go test -json ./... > test.json | ||
|
||
- name: Annotate tests | ||
if: always() | ||
uses: guyarb/golang-test-annotations@v0.5.1 | ||
with: | ||
test-results: test.json | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,40 @@ | ||
module github.com/samcm/checkpointz | ||
|
||
go 1.19 | ||
go 1.17 | ||
|
||
// replace github.com/samcm/beacon => /Users/samcm/go/src/github.com/samcm/beacon | ||
|
||
require ( | ||
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect | ||
github.com/attestantio/go-eth2-client v0.13.0 // indirect | ||
github.com/chuckpreslar/emission v0.0.0-20170206194824-a7ddd980baf9 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/deckarep/golang-set v1.8.0 // indirect | ||
github.com/ethereum/go-ethereum v1.10.20 // indirect | ||
github.com/attestantio/go-eth2-client v0.13.0 | ||
github.com/chuckpreslar/emission v0.0.0-20170206194824-a7ddd980baf9 | ||
github.com/go-co-op/gocron v1.16.2 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/samcm/beacon v0.0.0-20220805054207-a8d17f0ee98b | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/spf13/cobra v1.5.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/ferranbt/fastssz v0.1.1 // indirect | ||
github.com/go-co-op/gocron v1.16.2 // indirect | ||
github.com/go-ole/go-ole v1.2.1 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
github.com/goccy/go-yaml v1.9.5 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/julienschmidt/httprouter v1.3.0 // indirect | ||
github.com/klauspost/cpuid/v2 v2.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/minio/sha256-simd v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prysmaticlabs/go-bitfield v0.0.0-20210809151128-385d8c5e3fb7 // indirect | ||
github.com/r3labs/sse/v2 v2.8.1 // indirect | ||
github.com/robfig/cron/v3 v3.0.1 // indirect | ||
github.com/rs/zerolog v1.27.0 // indirect | ||
github.com/samcm/beacon v0.0.0-20220805054207-a8d17f0ee98b // indirect | ||
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/cobra v1.5.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/tklauser/go-sysconf v0.3.5 // indirect | ||
github.com/tklauser/numcpus v0.2.2 // indirect | ||
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect | ||
golang.org/x/net v0.0.0-20220805013720-a33c5aa5df48 // indirect | ||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect | ||
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 // indirect | ||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | ||
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect | ||
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.