Skip to content

Commit 9816c37

Browse files
Merge pull request #13 from nicolastemciuc/nt--test-against-openssl-latest-versions
Test against `openssl` `3.2`
2 parents 4095d77 + 5a115b9 commit 9816c37

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- 2.5
2626
- 2.4
2727
gemfile:
28+
- openssl_3_2
2829
- openssl_3_1
2930
- openssl_3_0
3031
- openssl_2_2
@@ -38,6 +39,12 @@ jobs:
3839
gemfile: openssl_3_1
3940
- ruby-version: '2.5'
4041
gemfile: openssl_3_1
42+
- ruby-version: '2.4'
43+
gemfile: openssl_3_2
44+
- ruby-version: '2.5'
45+
gemfile: openssl_3_2
46+
- ruby-version: '2.6'
47+
gemfile: openssl_3_2
4148
env:
4249
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
4350
steps:

Appraisals

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# frozen_string_literal: true
22

3+
appraise "openssl_3_2" do
4+
gem "openssl", "~> 3.2.0"
5+
end
6+
37
appraise "openssl_3_1" do
48
gem "openssl", "~> 3.1.0"
59
end

gemfiles/openssl_3_2.gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", "~> 2.2"
6+
gem "byebug", "~> 11.0"
7+
gem "ed25519", "~> 1.2"
8+
gem "rake", "~> 13.0"
9+
gem "rspec", "~> 3.0"
10+
gem "rubocop", "~> 1.0"
11+
gem "openssl", "~> 3.2.0"
12+
13+
gemspec path: "../"

0 commit comments

Comments
 (0)