File tree Expand file tree Collapse file tree 8 files changed +89
-78
lines changed Expand file tree Collapse file tree 8 files changed +89
-78
lines changed Original file line number Diff line number Diff line change 77  pull_request :
88
99jobs :
10-   rspec :
10+   tests :
11+     name : " RSpec @ Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }}" 
1112    runs-on : ubuntu-latest 
13+     continue-on-error : true 
14+     env :
15+       BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.gemfile 
1216    strategy :
1317      matrix :
1418        ruby :
15-           - " 3.0.7" 
16-           - " 3.1.5" 
19+           - " 3.1" 
20+           - " 3.3" 
21+           - " head" 
22+         rails :
23+           - " 6.1" 
24+           - " 7.1" 
25+           - " 7.2" 
26+         exclude :
27+             - ruby : " 3.3" 
28+               rails : " 6.1" 
1729    steps :
18-     - uses : actions/checkout@v2  
30+     - uses : actions/checkout@v3  
1931    - name : Set up Ruby 
2032      uses : ruby/setup-ruby@v1 
2133      with :
@@ -24,15 +36,20 @@ jobs:
2436    - name : Run rspec 
2537      run : bundle exec rake test 
2638
27-   rubocop :
39+   linters :
40+     name : " Rubocop @ Ruby ${{ matrix.ruby }}, Rails ${{ matrix.rails }}" 
2841    runs-on : ubuntu-latest 
42+     continue-on-error : true 
43+     env :
44+       BUNDLE_GEMFILE : gemfiles/rails_${{ matrix.rails }}.gemfile 
2945    strategy :
3046      matrix :
3147        ruby :
32-           - " 3.0.7" 
33-           - " 3.1.5" 
48+           - " head" 
49+         rails :
50+           - " 7.2" 
3451    steps :
35-     - uses : actions/checkout@v2  
52+     - uses : actions/checkout@v3  
3653    - name : Set up Ruby 
3754      uses : ruby/setup-ruby@v1 
3855      with :
Original file line number Diff line number Diff line change 88/tmp /
99Gemfile.lock 
1010* .gem 
11+ .ruby-version 
12+ gemfiles /* .lock 
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true 
2+ 
3+ SUPPORTED_RAILS_VERSIONS  =  %w[ 
4+   6.1 
5+   7.1 
6+   7.2 
7+ ] . freeze 
8+ 
9+ SUPPORTED_RAILS_VERSIONS . each  do  |version |
10+   appraise  "rails-#{ version }  "  do 
11+     gem  'rails' ,  "~> #{ version }  " 
12+   end 
13+ end 
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ source 'https://rubygems.org'
55# Specify your gem's dependencies in diffcrypt.gemspec 
66gemspec 
77
8+ gem  'appraisal' 
89gem  'minitest' ,  '~> 5.0' 
910gem  'minitest-reporters' ,  '~> 1.6.0' 
1011gem  'rake' ,  '~> 13.2' 
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+ 
3+ # This file was generated by Appraisal
4+ 
5+ source 'https://rubygems.org'
6+ 
7+ gem 'appraisal'
8+ gem 'minitest', '~> 5.0'
9+ gem 'minitest-reporters', '~> 1.6.0'
10+ gem 'rails', '~> 6.1'
11+ gem 'rake', '~> 13.2'
12+ gem 'rubocop', '~> 1.25.1'
13+ gem 'simplecov', '~> 0.22.0', require: false
14+ gem 'simplecov-lcov', '< 0.9'
15+ 
16+ gemspec path: '../'
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+ 
3+ # This file was generated by Appraisal
4+ 
5+ source 'https://rubygems.org'
6+ 
7+ gem 'appraisal'
8+ gem 'minitest', '~> 5.0'
9+ gem 'minitest-reporters', '~> 1.6.0'
10+ gem 'rails', '~> 7.1'
11+ gem 'rake', '~> 13.2'
12+ gem 'rubocop', '~> 1.25.1'
13+ gem 'simplecov', '~> 0.22.0', require: false
14+ gem 'simplecov-lcov', '< 0.9'
15+ 
16+ gemspec path: '../'
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+ 
3+ # This file was generated by Appraisal
4+ 
5+ source 'https://rubygems.org'
6+ 
7+ gem 'appraisal'
8+ gem 'minitest', '~> 5.0'
9+ gem 'minitest-reporters', '~> 1.6.0'
10+ gem 'rails', '~> 7.2'
11+ gem 'rake', '~> 13.2'
12+ gem 'rubocop', '~> 1.25.1'
13+ gem 'simplecov', '~> 0.22.0', require: false
14+ gem 'simplecov-lcov', '< 0.9'
15+ 
16+ gemspec path: '../'
  Load Diff This file was deleted. 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments