summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 0f398f29cf1f92ad60b45d9948fa8b6d84d1e793 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: pry

on: [push, pull_request]

jobs:
  rubocop:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.2

    - name: Install dependencies
      run: bundle install

    - name: Rubocop lint
      run: rubocop --parallel

  test:
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest]
        ruby:
          - 2.0
          - 2.1
          - 2.2
          - 2.3
          - 2.4
          - 2.5
          - 2.6
          - 2.7
          # Due to https://github.com/actions/runner/issues/849,
          # we have to use quotes for '3.0'
          - '3.0'
          - 3.1
          - 3.2
          - head
          - jruby-9.3.3.0
          # - jruby-head
        exclude:
          - os: windows-latest
            ruby: jruby-9.3.3.0
          - os: windows-latest
            ruby: '2.0'
          - os: windows-latest
            ruby: '2.1'
          - os: windows-latest
            ruby: '2.2'
          - os: windows-latest
            ruby: '2.3' # Intermittent failing Expression: RBASIC_CLASS(ret) == rb_cString
          - os: windows-latest
            ruby: '3.1'
          - os: windows-latest
            ruby: '3.2'
          - os: windows-latest
            ruby: 'head'

    runs-on: ${{ matrix.os }}
    continue-on-error: true

    steps:
    - uses: actions/checkout@v3

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}

    # Run manually, don't cache deps due to a bug with Ruby 2.4 and Ruby 2.5
    # https://github.com/pry/pry/actions/runs/1016360216
    - name: Install dependencies
      run: bundle install

    - name: YARD lint
      run: |
        touch README # Workaround for "incorrect" links in README.md
        bundle exec yardoc --fail-on-warning --no-progress --readme=README

    - name: Display Ruby version
      run: ruby -v

    - name: Test
      run: bundle exec rake
      env:
        # Make sure TERM is set so Pry can indent correctly inside tests.
        TERM: screen-256color