Skip to content

Commit ffac1e8

Browse files
committed
Badges/workflows cleanup
1 parent 2ef9d90 commit ffac1e8

File tree

4 files changed

+27
-31
lines changed

4 files changed

+27
-31
lines changed

.github/workflows/go.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/golangci-lint.yml renamed to .github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: golangci-lint
1+
name: lint
22
on:
33
push:
44
tags:

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: test
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
name: test
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: set up Go 1.x
15+
uses: actions/setup-go@v2
16+
with:
17+
go-version: ^1.14
18+
id: go
19+
- name: checkout
20+
uses: actions/checkout@v2
21+
- name: modules
22+
run: go mod download
23+
- name: test
24+
run: go test -v ./emf

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# aws-embedded-metrics-golang
22

3-
![Go](https://github.com/prozz/aws-embedded-metrics-golang/workflows/Go/badge.svg?branch=master)
3+
![test](https://github.com/prozz/aws-embedded-metrics-golang/workflows/test/badge.svg?branch=master)
4+
![golangci-lint](https://github.com/prozz/aws-embedded-metrics-golang/workflows/lint/badge.svg?branch=master)
45

56
Go implementation of AWS CloudWatch [Embedded Metric Format](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Embedded_Metric_Format_Specification.html)
67

0 commit comments

Comments
 (0)