summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu.yml
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-26 18:36:11 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-26 18:37:20 +0100
commit32b18ca7ca3f763e9a13124ac1000df4d708a695 (patch)
tree3f1616211ae669425841e3aa00fb290e8de81f98 /.github/workflows/ubuntu.yml
parentbb8a35ef7e45654ce3e57c9154da014432a46d13 (diff)
downloadpsych-32b18ca7ca3f763e9a13124ac1000df4d708a695.zip
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 ```
Diffstat (limited to '.github/workflows/ubuntu.yml')
-rw-r--r--.github/workflows/ubuntu.yml2
1 files changed, 2 insertions, 0 deletions
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