File tree Expand file tree Collapse file tree 3 files changed +43
-17
lines changed
Expand file tree Collapse file tree 3 files changed +43
-17
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+
11+ strategy :
12+ matrix :
13+ ruby_version :
14+ - ' 2.6'
15+ - ' 2.7'
16+ - ' 3.0'
17+ rails_version :
18+ - ' 5.2.6'
19+ - ' 6.0.4'
20+ - ' 6.1.4'
21+ exclude :
22+ - ruby_version : ' 3.0'
23+ rails_version : ' 5.2.6'
24+
25+ name : Ruby ${{ matrix.ruby_version }} / Rails ${{ matrix.rails_version }}
26+
27+ env :
28+ RAILS : ${{ matrix.rails_version }}
29+
30+ steps :
31+ - uses : actions/checkout@v2
32+
33+ - name : Setup Ruby
34+ uses : ruby/setup-ruby@v1
35+ with :
36+ ruby-version : ${{ matrix.ruby_version }}
37+ bundler-cache : true
38+
39+ - name : Test
40+ run : bundle exec rspec spec
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# ActiveAdminImport
22
3- [ ![ Travis Build ] [ build_badge ]] [ build_link ]
3+ [ ![ Build Status ] [ build_badge ]] [ build_link ]
44[ ![ Coverage Status] [ coveralls_badge ]] [ coveralls_link ]
55[ ![ Code Climate ] [ codeclimate_badge ]] [ codeclimate_link ]
66[ ![ Gem Version ] [ rubygems_badge ]] [ rubygems_link ]
@@ -91,8 +91,8 @@ Tool | Description
9191[ rchardet ] : https://github.com/jmhodges/rchardet
9292[ activerecord-import ] : https://github.com/zdennis/activerecord-import
9393
94- [ build_badge ] : https://travis-ci.org /activeadmin-plugins/active_admin_import. svg?branch=master
95- [ build_link ] : https://travis-ci.org /activeadmin-plugins/active_admin_import
94+ [ build_badge ] : https://github.com /activeadmin-plugins/active_admin_import/actions/workflows/test.yml/badge. svg
95+ [ build_link ] : https://github.com /activeadmin-plugins/active_admin_import/actions
9696[ coveralls_badge ] : https://coveralls.io/repos/activeadmin-plugins/active_admin_import/badge.svg
9797[ coveralls_link ] : https://coveralls.io/github/activeadmin-plugins/active_admin_import
9898[ codeclimate_badge ] : https://codeclimate.com/github/activeadmin-plugins/active_admin_import/badges/gpa.svg
You can’t perform that action at this time.
0 commit comments