Summary
Jobs
build (2.7, 6.0, rest-client)
build (2.7, 6.0, faraday)
build (2.7, 6.1, rest-client)
build (2.7, 6.1, faraday)
build (2.7, 7.0, rest-client)
build (2.7, 7.0, faraday)
build (2.7, 7.1, rest-client)
build (2.7, 7.1, faraday)
build (3.0, 6.0, rest-client)
build (3.0, 6.0, faraday)
build (3.0, 6.1, rest-client)
build (3.0, 6.1, faraday)
build (3.0, 7.0, rest-client)
build (3.0, 7.0, faraday)
build (3.0, 7.1, rest-client)
build (3.0, 7.1, faraday)
build (3.1, 6.0, rest-client)
build (3.1, 6.0, faraday)
build (3.1, 6.1, rest-client)
build (3.1, 6.1, faraday)
build (3.1, 7.0, rest-client)
build (3.1, 7.0, faraday)
build (3.1, 7.1, rest-client)
build (3.1, 7.1, faraday)
build (3.2, 6.0, rest-client)
build (3.2, 6.0, faraday)
build (3.2, 6.1, rest-client)
build (3.2, 6.1, faraday)
build (3.2, 7.0, rest-client)
build (3.2, 7.0, faraday)
build (3.2, 7.1, rest-client)
build (3.2, 7.1, faraday)
build (3.3, 6.0, rest-client)
build (3.3, 6.0, faraday)
build (3.3, 6.1, rest-client)
build (3.3, 6.1, faraday)
build (3.3, 7.0, rest-client)
build (3.3, 7.0, faraday)
build (3.3, 7.1, rest-client)
build (3.3, 7.1, faraday)
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruby
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
active_model:
- '6.0'
- '6.1'
- '7.0'
- '7.1'
http_client_gem:
- 'rest-client'
- 'faraday'
env:
ACTIVE_MODEL_VERSION: "~> ${{ matrix.active_model }}.0"
HTTP_CLIENT_GEM: "${{ matrix.http_client_gem }}"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
You can’t perform that action at this time.