summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-jruby.yml
blob: 1ef9f6517abafc18c3dd5ce8efbf295a2ae96247 (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@v2
      - 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