Skip to content

fix radio button messages looping #120

fix radio button messages looping

fix radio button messages looping #120

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.16"
- "1.20"
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -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