Skip to content

HeadHTML -> PreloadHTML #289

HeadHTML -> PreloadHTML

HeadHTML -> PreloadHTML #289

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- "1.21"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Install stringer
run: go install golang.org/x/tools/cmd/stringer@latest
- name: Generate
run: go generate ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -tags debug -bench=. -coverprofile=coverage.txt ./...
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...
- name: actions-goveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.txt
- name: Go report card
uses: creekorful/goreportcard-action@v1.0