Skip to content

Commit 45cb751

Browse files
authored
Merge pull request #11 from domainr/ydnar/badges
housekeeping
2 parents 94b61dc + 7530dc4 commit 45cb751

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/go.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,19 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v4
2222
with:
23-
go-version: ^1
23+
go-version-file: go.mod
24+
check-latest: true
2425

2526
- name: Vet Go code
2627
run: go vet ./...
2728

2829
- name: Test Go code
2930
run: go test -v -race ./...
3031

32+
- name: Test Go without cgo
33+
env:
34+
CGO_ENABLED: 0
35+
run: go test -v ./...
36+
3137
- name: Verify repo is unchanged
3238
run: git diff --exit-code HEAD

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# EPP for Go
22

3-
[![build status](https://img.shields.io/github/workflow/status/domainr/epp2/Go.svg)](https://github.com/domainr/epp2/actions)
3+
[![build status](https://img.shields.io/github/actions/workflow/status/domainr/epp2/go.yaml?branch=main)](https://github.com/domainr/epp2/actions)
44
[![pkg.go.dev](https://img.shields.io/badge/docs-pkg.go.dev-blue.svg)](https://pkg.go.dev/github.com/domainr/epp2)
55

6+
67
Extensible Provisioning Protocol (EPP) for
78
[Go](https://go.dev/).
89

0 commit comments

Comments
 (0)