From 824150f89b8d9fccf88fa393f155bb10dcdae543 Mon Sep 17 00:00:00 2001 From: leonklingele <5585491+leonklingele@users.noreply.github.com> Date: Sun, 4 Aug 2019 16:10:32 +0200 Subject: [PATCH] Add Travis CI and pin dependencies (#655) --- .travis.yml | 17 +++++++++++++++++ README.md | 2 ++ shard.yml | 3 +++ 3 files changed, 22 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..da787cf1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: crystal + +crystal: + - latest + +dist: bionic + +before_install: + - shards update + - shards install + +install: + - crystal build --error-on-warnings src/invidious.cr + +script: + - crystal tool format --check + - crystal spec diff --git a/README.md b/README.md index 44254c62..be7c5580 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Invidious +[![Build Status](https://travis-ci.org/omarroth/invidious.svg?branch=master)](https://travis-ci.org/omarroth/invidious) + ## Invidious is an alternative front-end to YouTube - Audio-only mode (and no need to keep window open on mobile) diff --git a/shard.yml b/shard.yml index 3e2b3d03..b1b500d8 100644 --- a/shard.yml +++ b/shard.yml @@ -11,10 +11,13 @@ targets: dependencies: pg: github: will/crystal-pg + version: ~> 0.17.0 sqlite3: github: crystal-lang/crystal-sqlite3 + version: ~> 0.12.0 kemal: github: kemalcr/kemal + version: ~> 0.25.2 crystal: 0.29.0