summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test.yml
blob: 25b6d621fcbb628963b05fa5fe73807c1e16e6f7 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Test
on:
  push:
    branches: ['*']
  pull_request:
    branches: ['*']

jobs:
  test_ruby_versions:
    runs-on: ubuntu-20.04

    continue-on-error: ${{ matrix.allow_failures == 'allow failures' || false }}

    env:
      BUNDLE_GEMFILE: "${{ matrix.gemfile }}" ### allows adding gemfile: to the matrix, bundler will automatically pick this up

    strategy:
      fail-fast: false
      matrix:
        include:
          - ruby: 2.6
          - ruby: 2.7
          - ruby: "3.0" ### must be quoted otherwise will be treated as "3" which resolves to latest 3.x version
          - ruby: 3.1
          - ruby: 3.2
          - ruby: jruby-9.3
          - ruby: jruby-9.4
          - ruby: head
            allow_failures: 'allow failures'
          - ruby: jruby-head
            allow_failures: 'allow failures'

    steps:
    - uses: actions/checkout@v3

    - name: Install ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ matrix.ruby }}"
        bundler-cache: true

    - name: Run tests
      run: |
        bundle exec rake