Skip to content

Commit b5e775a

Browse files
committed
Replace Travis with GitHub Actions
* builds with go 1.17
1 parent 405d320 commit b5e775a

3 files changed

Lines changed: 16 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
- name: Set up Go
12+
uses: actions/setup-go@v2
13+
with:
14+
go-version: 1.17.x
15+
- run: go test ./...

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![](https://f.cloud.github.com/assets/846194/628861/8090cb46-d104-11e2-84eb-7878aa9057d0.gif)
44

55
## Overview
6-
[![Build Status](https://api.travis-ci.org/pearkes/get.png?branch=master)](https://travis-ci.org/pearkes/gethub)
6+
[![Build Status](https://github.com/pearkes/gethub/actions/workflows/ci.yml/badge.svg)](https://github.com/pearkes/gethub/actions/workflows/ci.yml)
77

88
`gethub` helps you keep all of your git repositories that have GitHub
99
remotes up to date.

0 commit comments

Comments
 (0)