From a395b295b9e3de4d62c93cfe300181fdfebc80f4 Mon Sep 17 00:00:00 2001 From: Vasile Popescu Date: Sat, 14 Sep 2019 21:38:53 +0200 Subject: [PATCH] Use travis for building - add a .travis.yml file - add the badge to the README.md --- .travis.yml | 4 ++++ README.md | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b2d47d0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: go + +go: +- 1.12.x diff --git a/README.md b/README.md index d34e30b..94b73d3 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://travis-ci.com/elisescu/tty-share.svg?branch=master)](https://travis-ci.com/elisescu/tty-share) + # tty-share It is a very simple command line tool that gives remote access to a UNIX terminal session. It's using the [PTY](https://en.wikipedia.org/wiki/Pseudoterminal) system, so it should work on any *UNIX* system (Linux, OSX). Because it's written in GO, the tool will be a single binary, with no dependencies, which will also work on your ARM Raspberry Pi.