Skip to content

HTTP/2 Rapid Reset 対策のため Go 1.21.3 以降でビルドするようにする #303

HTTP/2 Rapid Reset 対策のため Go 1.21.3 以降でビルドするようにする

HTTP/2 Rapid Reset 対策のため Go 1.21.3 以降でビルドするようにする #303

Workflow file for this run

name: Go Build & Test
on:
push:
branches-ignore:
- "main"
tags-ignore:
- "*"
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
# go-version-file: ./go.mod
go-version: "^1.21.3"
- run: go version
- run: go fmt .
- uses: dominikh/[email protected]
with:
version: "2023.1.2"
install-go: false
- name: Test
run: make test
- name: Build
run: make