Skip to content

Commit 96ce038

Browse files
authored
Move CI build to Actions (paypal#108)
* Moves CI build to Actions * Removes travis CI config and replaces badge with Github Actions badge. * Updates go docs badge location as it was broken
1 parent dde34d3 commit 96ce038

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Go
2+
3+
on:
4+
push:
5+
branches: [ develop ]
6+
pull_request:
7+
branches: [ develop ]
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Set up Go
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: 1.17
20+
21+
- name: Build
22+
run: go build -o executor dce/main.go

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# dce-go
2-
[![godoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square)](http://godoc.org) [![Build Status](https://travis-ci.org/paypal/dce-go.svg?branch=develop)](https://travis-ci.org/paypal/dce-go)
2+
[![Go Reference](https://pkg.go.dev/badge/github.com/paypal/dce-go.svg)](https://pkg.go.dev/github.com/paypal/dce-go) ![CI Build Status](https://github.com/paypal/dce-go/actions/workflows/ci.yml/badge.svg)
33

44
## Overview
55

0 commit comments

Comments
 (0)