summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-jruby.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ubuntu-jruby.yml')
-rw-r--r--.github/workflows/ubuntu-jruby.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/ubuntu-jruby.yml b/.github/workflows/ubuntu-jruby.yml
deleted file mode 100644
index 7fadea2..0000000
--- a/.github/workflows/ubuntu-jruby.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-name: ubuntu-jruby
-
-on: [push, pull_request]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- ruby: [ jruby, jruby-head ]
- steps:
- - uses: actions/checkout@v3
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: ${{ matrix.ruby }}
- - name: Install dependencies
- run: bundle install --jobs 1
- - name: compile
- run: bundle exec rake compile
- - name: test
- run: bundle exec rake test