-
Notifications
You must be signed in to change notification settings - Fork 553
44 lines (36 loc) · 1.08 KB
/
stable.yml
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: stable
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: "benchmark"
JRUBY_OPTS: "--debug"
strategy:
fail-fast: false
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- jruby-9.4
- truffleruby
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
# code style is enough to check once (and might even take some time on JRuby)
if: matrix.ruby-version == '3.3'
- name: Run tests
run: bundle exec rake test
if: matrix.ruby-version != 'truffleruby'
# Run only `rake spec` on truffleruby, because just `rake` runs cucumber
# which fails because it uses an old childprocess which depends on fork.
- name: Run specs (truffleruby)
run: bundle exec rake spec
if: matrix.ruby-version == 'truffleruby'