Skip to content

Commit

Permalink
Replace Travis with GitHub Actions
Browse files Browse the repository at this point in the history
* builds with go 1.17
  • Loading branch information
Mongey committed Sep 7, 2021
1 parent 405d320 commit b5e775a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- run: go test ./...
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![](https://f.cloud.github.com/assets/846194/628861/8090cb46-d104-11e2-84eb-7878aa9057d0.gif)

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

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

0 comments on commit b5e775a

Please sign in to comment.