Skip to content

Commit

Permalink
[#8] merge branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dwkang committed Dec 1, 2021
2 parents a3e7ece + 386c6d6 commit c5dd37e
Show file tree
Hide file tree
Showing 29 changed files with 3,518 additions and 172 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14

- name: Build
run: go build -v

- name: Test
run: go test -v
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![ci](https://github.com/pinpoint-apm/pinpoint-go-agent/workflows/ci/badge.svg)

# Pinpoint Go Agent

Pinpoint Go Agent is a library that allows Go applications to be monitored through pinpoint.
Expand All @@ -19,6 +21,7 @@ import pinpoint "github.com/pinpoint-apm/pinpoint-go-agent"
## Requirements
* Go 1.12+
* Pinpoint 2.1.1+
* support Linux only

## Example

Expand Down
Loading

0 comments on commit c5dd37e

Please sign in to comment.