-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (51 loc) · 1.27 KB
/
ruby.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Ruby CI
on:
pull_request:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
ruby-ci:
name: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os:
- ubuntu-20.04
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- head
- jruby
- jruby-head
- truffleruby
- truffleruby-head
include:
- ruby: head
continue-on-error: true
- ruby: jruby-head
continue-on-error: true
- os: ubuntu-22.04
ruby: head
- os: ubuntu-22.04
ruby: '3.2'
- os: ubuntu-22.04
ruby: '3.3'
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.continue-on-error || false }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec ruby -S rake test --trace
- run: bundle exec ruby -S appraisal install
- run: bundle exec ruby -S appraisal rake test
- run: bundle exec standardrb
if: ${{ matrix.ruby == '3.3' && matrix.os == 'ubuntu-22.04' }}