summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDavid Rodriguez <deivid.rodriguez@riseup.net>2021-10-12 17:51:58 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-10-07 17:10:09 +0900
commit3be535bbbb30807c54a69e3c60e1ebbf44accdc8 (patch)
treedc8229cc0f81461531cdd154fdbb16f7c33af79c /.github
parent154ff50149be78c9b4c054e9c23bc9c9f3708f3b (diff)
downloadpsych-3be535bbbb30807c54a69e3c60e1ebbf44accdc8.tar.gz
Use Bundler to install dependencies and run tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ubuntu-jruby.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ubuntu-jruby.yml b/.github/workflows/ubuntu-jruby.yml
index ac823d6..56e184d 100644
--- a/.github/workflows/ubuntu-jruby.yml
+++ b/.github/workflows/ubuntu-jruby.yml
@@ -16,9 +16,9 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
- run: gem install ruby-maven power_assert test-unit rake-compiler
+ run: bundle install --jobs 1
- name: compile
- run: rake compile
+ run: bundle exec rake compile
- name: test
continue-on-error: true
- run: rake test
+ run: bundle exec rake test