Skip to content

Adding semgrep yaml file #16

Adding semgrep yaml file

Adding semgrep yaml file #16

Workflow file for this run

name: Go Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
env:
GODEBUG: x509ignoreCN=0
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.16"
- run: go mod vendor
- run: go build
- run: go test -race -coverprofile=coverage.out ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)