diff --git a/.github/workflows/build-on-push.yml b/.github/workflows/build-on-push.yml
new file mode 100644
index 00000000..c5058a58
--- /dev/null
+++ b/.github/workflows/build-on-push.yml
@@ -0,0 +1,11 @@
+name: Build
+on: [push]
+jobs:
+ build-referee:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-node@v1
+ - run: sudo apt-get -qq update
+ - run: sudo apt-get install -y oathtool
+ - run: yarn prepare-artifacts
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 6167ae72..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-language: node_js
-dist: xenial
-before_install:
- - sudo apt-get -qq update
- - sudo apt-get install -y oathtool
-
-script:
- - yarn prepare-artifacts
\ No newline at end of file
diff --git a/README.md b/README.md
index 89d9ba4e..10fc692a 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
+
+
Referee is a user interface for using Spinnaker's Kayenta, a platform for Automated Canary Analysis (ACA), as a standalone service.
Referee is very much inspired by the Spinnakers official UI (Deck).