Merge pull request #116 from bquorning/run-ci-with-different-versions-of-faraday

Run CI with different versions of Faraday
This commit is contained in:
Arthur Nogueira Neves 2024-03-04 18:53:43 -05:00 коммит произвёл GitHub
Родитель caf2381a94 e036954d08
Коммит c9c8b5ea9a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
5 изменённых файлов: 23 добавлений и 1 удалений

11
.github/workflows/tests.yml поставляемый
Просмотреть файл

@ -10,6 +10,11 @@ jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby_version }} with ${{ matrix.gemfile }}
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
strategy:
matrix:
ruby_version:
@ -17,9 +22,13 @@ jobs:
- "3.0"
- "3.1"
- "head"
gemfile:
- "faraday-0"
- "faraday-1"
- "faraday-2"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1

1
.gitignore поставляемый
Просмотреть файл

@ -3,6 +3,7 @@
*.gem
/Gemfile.lock
/gemfiles/*.lock
vendor/ruby
example/vendor

Просмотреть файл

@ -0,0 +1,4 @@
source 'https://rubygems.org'
gemspec path: '..'
gem 'faraday', '~> 0'

Просмотреть файл

@ -0,0 +1,4 @@
source 'https://rubygems.org'
gemspec path: '..'
gem 'faraday', '~> 1'

Просмотреть файл

@ -0,0 +1,4 @@
source 'https://rubygems.org'
gemspec path: '..'
gem 'faraday', '~> 2'