File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 setup :
12- name : Ruby ${{ matrix.ruby }}
12+ name : Ruby ${{ matrix.ruby }} with prawn ${{ matrix.prawn }}
1313
1414 runs-on : ubuntu-latest
1515
2020 - " 3.1"
2121 - " 3.2"
2222 - " 3.3"
23+ prawn :
24+ - " 2.4"
25+ - " 2.5"
2326
2427 steps :
2528 - uses : actions/checkout@v4
3437 ruby-version : ${{ matrix.ruby }}
3538 bundler-cache : true
3639
40+ - name : Install dependencies
41+ run : bundle install --gemfile gemfiles/prawn-${{ matrix.prawn }}.gemfile --jobs 4 --retry 3
42+
3743 - name : Run tests for main
3844 run : bundle exec rake test:main
3945
Original file line number Diff line number Diff line change 1+ source 'https://rubygems.org'
2+
3+ gem 'prawn', '~> 2.4.0'
4+
5+ gemspec path: '../'
Original file line number Diff line number Diff line change 1+ source 'https://rubygems.org'
2+
3+ gem 'prawn', '~> 2.5.0'
4+
5+ gemspec path: '../'
6+
You can’t perform that action at this time.
0 commit comments