File tree Expand file tree Collapse file tree 3 files changed +30
-6
lines changed
Expand file tree Collapse file tree 3 files changed +30
-6
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ test :
7+ runs-on : ubuntu-latest
8+
9+ strategy :
10+ fail-fast : false
11+
12+ matrix :
13+ ruby-version :
14+ - 2.3
15+ - 2.4
16+ - 2.5
17+ - 2.6
18+ - 2.7
19+ - " 3.0"
20+ - 3.1
21+ - 3.2
22+ - 3.3
23+
24+ steps :
25+ - uses : actions/checkout@v4
26+ - uses : ruby/setup-ruby@v1
27+ with :
28+ ruby-version : ${{ matrix.ruby-version }}
29+ bundler-cache : true
30+ - run : bundle exec rspec
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ Gem::Specification.new do |spec|
1919 spec . require_paths = [ "lib" ]
2020 spec . add_runtime_dependency 'omniauth-oauth2' , '>= 1.2'
2121
22- spec . add_development_dependency "bundler" , "~> 1.12"
2322 spec . add_development_dependency "rake" , "~> 10.0"
2423 spec . add_development_dependency "rspec" , "~> 3.0"
2524 spec . add_development_dependency "rack" , "~> 1.6"
You can’t perform that action at this time.
0 commit comments