summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-jruby.yml
blob: fd64cf10e26a95c06348211e2238aee7040f39c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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@v1
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: |
          gem install bundler --no-document
          bundle install
      - name: compile
        run: rake compile
      - name: test
        continue-on-error: true
        run: rake test