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.
1 parent 903dfe2 commit 28c4ba6Copy full SHA for 28c4ba6
.github/workflows/unit-test.yml
@@ -10,22 +10,17 @@ jobs:
10
strategy:
11
fail-fast: false
12
matrix:
13
- ruby: [ '3.2', '3.1', '3.0', '2.7' ]
+ ruby: [ '3.4', '3.3', '3.2' ]
14
os: [ 'ubuntu-latest', 'macOS-latest', 'windows-latest' ]
15
- # It should be removed after RubyInstaller 3.2 is available on setup-ruby
16
- exclude:
17
- - os: windows-latest
18
- ruby: 3.2
19
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
20
steps:
21
- uses: actions/checkout@v4
22
- uses: ruby/setup-ruby@v1
23
with:
24
ruby-version: ${{ matrix.ruby }}
+ bundler-cache: true
25
- name: unit testing
26
env:
27
CI: true
28
run: |
29
- gem install bundler rake
30
- bundle install --jobs 4 --retry 3
31
bundle exec rake test
0 commit comments