Skip to content

Commit 3ba32e2

Browse files
Merge pull request #11 from nicolastemciuc/nt--test-against-latest-patch-version
Use latest patch versions for all Ruby versions
2 parents 323447b + 251b0ba commit 3ba32e2

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
ruby-version:
19-
- 3.2.0
20-
- 3.1.3
21-
- 3.0.5
22-
- 2.7.7
23-
- 2.6.6
24-
- 2.5.8
25-
- 2.4.10
19+
- 3.2
20+
- 3.1
21+
- '3.0'
22+
- 2.7
23+
- 2.6
24+
- 2.5
25+
- 2.4
2626
gemfile:
2727
- openssl_3_1
2828
- openssl_3_0
2929
- openssl_2_2
3030
- openssl_2_1
3131
exclude:
32-
- ruby-version: '2.4.10'
32+
- ruby-version: '2.4'
3333
gemfile: openssl_3_0
34-
- ruby-version: '2.5.8'
34+
- ruby-version: '2.5'
3535
gemfile: openssl_3_0
36-
- ruby-version: '2.4.10'
36+
- ruby-version: '2.4'
3737
gemfile: openssl_3_1
38-
- ruby-version: '2.5.8'
38+
- ruby-version: '2.5'
3939
gemfile: openssl_3_1
4040
env:
4141
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
@@ -49,6 +49,6 @@ jobs:
4949
bundler-cache: true
5050
- name: Run rubocop
5151
run: bundle exec rubocop
52-
if: ${{ matrix.ruby == '3.2.0' }}
52+
if: ${{ matrix.ruby == '3.2' }}
5353
- name: Run tests
5454
run: bundle exec rspec

0 commit comments

Comments
 (0)