Skip to content

set CGO_ENABLED=0

set CGO_ENABLED=0 #89

Workflow file for this run

name: go-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Test
run: |
go test ./... -coverprofile=profile.cov
- uses: shogo82148/[email protected]
with:
path-to-profile: profile.cov