Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
add faraday metrix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkmn committed Nov 10, 2022
1 parent a21adc1 commit 7cbf9de
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
- 2.7
- '3.0' # Quoted, to avoid YAML float 3.0 interplated to "3"
- 3.1

gemfile:
- faraday_0
- faraday_1
- faraday_2
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
Expand Down
5 changes: 5 additions & 0 deletions gemfiles/faraday_0.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "faraday", "~> 0"

eval_gemfile File.expand_path("../Gemfile", __dir__)
5 changes: 5 additions & 0 deletions gemfiles/faraday_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "faraday", "~> 1"

eval_gemfile File.expand_path("../Gemfile", __dir__)
5 changes: 5 additions & 0 deletions gemfiles/faraday_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "faraday", "~> 2"

eval_gemfile File.expand_path("../Gemfile", __dir__)

0 comments on commit 7cbf9de

Please sign in to comment.