- Notifications
You must be signed in to change notification settings - Fork331
feat: add experimental http2 support#539
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -17,7 +17,10 @@ jobs: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/setup-go@v5 | ||||||
| with: | ||||||
| # HACK(mafredri): The exampels and thirdparty library require Go 1.24 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. typo here and on line 33 Suggested change
| ||||||
| # due to `golang.org/x/crypto` import, so lint tools must be built by | ||||||
| # the highest version of Go used. | ||||||
| go-version-file: ./internal/thirdparty/go.mod | ||||||
| - run: make fmt | ||||||
| lint: | ||||||
| @@ -27,7 +30,10 @@ jobs: | ||||||
| - run: go version | ||||||
| - uses: actions/setup-go@v5 | ||||||
| with: | ||||||
| # HACK(mafredri): The exampels and thirdparty library require Go 1.24 | ||||||
| # due to `golang.org/x/crypto` import, so lint tools must be built by | ||||||
| # the highest version of Go used. | ||||||
| go-version-file: ./internal/thirdparty/go.mod | ||||||
| - run: make lint | ||||||
| test: | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -34,33 +34,3 @@ jobs: | ||
| with: | ||
| name: coverage.html | ||
| path: ./ci/out/coverage.html | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. nit: is this just maintenance or related to this PR? If the first one, perhaps split it... just in case we have to revert this one :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Maintenance, I'll break the unrelated stuff into a separate PR 👍🏻 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -13,6 +13,11 @@ lint: | ||
| test: | ||
| ./ci/test.sh | ||
| .PHONY: static | ||
| static: | ||
| make test | ||
| ./ci/static.sh | ||
| .PHONY: bench | ||
| bench: | ||
| ./ci/bench.sh | ||
Uh oh!
There was an error while loading.Please reload this page.