File tree Expand file tree Collapse file tree 4 files changed +28
-18
lines changed Expand file tree Collapse file tree 4 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 1+ name : Run tests
2+ on :
3+ - push
4+ jobs :
5+ run-tests :
6+ strategy :
7+ fail-fast : false
8+ matrix :
9+ version :
10+ - 3.2.2
11+ - 3.1.4
12+ - 3.0.6
13+ - 2.7.8
14+ runs-on : ubuntu-latest
15+ env :
16+ CI : true
17+ BUNDLE_GEMFILE : ${{ github.workspace }}/graphql-latest.gemfile
18+ steps :
19+ - name : Checkout a commit
20+ uses : actions/checkout@v4
21+ - name : Set up Ruby
22+ uses : ruby/setup-ruby@v1
23+ with :
24+ ruby-version : ${{ matrix.version }}
25+ bundler-cache : true
26+ - name : Run tests
27+ run : bundle exec rspec
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# BatchLoader
22
3- [ ![ Build Status] ( https://travis-ci.org/exAspArk/batch-loader.svg?branch=master )] ( https://travis-ci.org/exAspArk/batch-loader )
43[ ![ Coverage Status] ( https://coveralls.io/repos/github/exAspArk/batch-loader/badge.svg )] ( https://coveralls.io/github/exAspArk/batch-loader )
54[ ![ Code Climate] ( https://img.shields.io/codeclimate/maintainability/exAspArk/batch-loader.svg )] ( https://codeclimate.com/github/exAspArk/batch-loader/maintainability )
65[ ![ Downloads] ( https://img.shields.io/gem/dt/batch-loader.svg )] ( https://rubygems.org/gems/batch-loader )
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ source "https://rubygems.org"
22
33gem 'coveralls'
44
5- gem "graphql", ">= 1.8"
5+ gem "graphql", "~> 1.8"
66
77gemspec
You can’t perform that action at this time.
0 commit comments