Enable CGO

This commit is contained in:
Braydon 2023-08-06 01:41:01 -04:00
parent 10000b82e5
commit 0134881239

@ -1,5 +1,5 @@
name: checks name: checks
on: on:
- push - push
- pull_request - pull_request
@ -7,6 +7,7 @@ env:
GOPROXY: https://goproxy.io,direct GOPROXY: https://goproxy.io,direct
GOPATH: /home/rootless/go_path GOPATH: /home/rootless/go_path
GOCACHE: /home/rootless/go_cache GOCACHE: /home/rootless/go_cache
CGO_ENABLED: 1
jobs: jobs:
lint: lint:
@ -40,4 +41,4 @@ jobs:
- name: vet - name: vet
run: go vet run: go vet
- name: test - name: test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...