We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a57a829 + 0dc403d commit bed1b83Copy full SHA for bed1b83
.github/workflows/rspec_tests.yaml
@@ -13,10 +13,11 @@ jobs:
13
strategy:
14
matrix:
15
cfg:
16
- - {os: ubuntu-20.04, ruby: '2.7'}
17
- - {os: ubuntu-20.04, ruby: '3.0'}
18
- - {os: ubuntu-20.04, ruby: '3.2'}
19
- - {os: ubuntu-20.04, ruby: 'jruby-9.4.2'}
+ - {os: ubuntu-22.04, ruby: '2.7'}
+ - {os: ubuntu-22.04, ruby: '3.0'}
+ - {os: ubuntu-22.04, ruby: '3.2'}
+ - {os: ubuntu-22.04, ruby: '3.3'}
20
+ - {os: ubuntu-22.04, ruby: 'jruby-9.4.2'}
21
- {os: windows-2019, ruby: '2.7'}
22
- {os: windows-2019, ruby: '3.0'}
23
- {os: windows-2019, ruby: '3.2'}
@@ -30,11 +31,7 @@ jobs:
30
31
uses: ruby/setup-ruby@v1
32
with:
33
ruby-version: ${{ matrix.cfg.ruby }}
-
34
- - name: Update rubygems and install gems
35
- run: |
36
- gem update --system --silent --no-document
37
- bundle config set without packaging
38
- bundle install --jobs 4 --retry 3
39
40
- - run: bundle exec rake spec
+ bundler-cache: true
+ - run: bundle exec rake spec
+ - name: Verify gem builds
+ run: gem build --verbose *.gemspec
0 commit comments