From 32b18ca7ca3f763e9a13124ac1000df4d708a695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 26 Feb 2020 18:36:11 +0100 Subject: Fix gem installation Current version is not installable because the gemspec is invalid, since it includes a `.travis.yml` file that no longer exists, so `rake install` fails like this: ``` $ rake install rake aborted! WARNING: See https://guides.rubygems.org/specification-reference/ for help ERROR: While executing gem ... (Gem::InvalidSpecificationException) [".travis.yml"] are not files ``` --- .github/workflows/ubuntu.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows/ubuntu.yml') diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index efd01ea..b085e4b 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -21,3 +21,5 @@ jobs: run: bundle install - name: Run test run: rake + - name: Install gem + run: rake install -- cgit v1.2.3