Skip to content

Commit a3b47ba

Browse files
authored
Use official badges (#57)
1 parent f2efde7 commit a3b47ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# GitHub Actions SDK (Go)
22

3-
[![GoDoc](https://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://pkg.go.dev/github.com/sethvargo/go-githubactions)
4-
[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/sethvargo/go-githubactions/unit.yml?branch=main&style=flat-square)](https://github.com/sethvargo/go-githubactions/actions?query=workflow%3ATest)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/sethvargo/go-githubactions.svg)](https://pkg.go.dev/github.com/sethvargo/go-githubactions)
4+
[![unit](https://github.com/sethvargo/go-githubactions/actions/workflows/unit.yml/badge.svg)](https://github.com/sethvargo/go-githubactions/actions/workflows/unit.yml)
55

66
This library provides an SDK for authoring [GitHub Actions][gh-actions] in Go. It has no external dependencies and provides a Go-like interface for interacting with GitHub Actions' build system.
77

@@ -70,7 +70,7 @@ By default, GitHub Actions expects actions to be written in Node.js. For other l
7070
# your-repo/Dockerfile
7171
FROM golang:1.18
7272
WORKDIR /src
73-
COPY . .
73+
COPY . .
7474
RUN go build -o /bin/app .
7575
ENTRYPOINT ["/bin/app"]
7676
```

0 commit comments

Comments
 (0)