File tree Expand file tree Collapse file tree 3 files changed +40
-79
lines changed
Expand file tree Collapse file tree 3 files changed +40
-79
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : test
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ rspec :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ ruby :
15+ - " 2.7.5"
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Set up Ruby
19+ uses : ruby/setup-ruby@v1
20+ with :
21+ ruby-version : ${{ matrix.ruby }}
22+ bundler-cache : true
23+ - name : Run rspec
24+ run : bundle exec rake test
25+ rubocop :
26+ runs-on : ubuntu-latest
27+ strategy :
28+ matrix :
29+ ruby :
30+ - " 2.7.5"
31+ steps :
32+ - uses : actions/checkout@v2
33+ - name : Set up Ruby
34+ uses : ruby/setup-ruby@v1
35+ with :
36+ ruby-version : ${{ matrix.ruby }}
37+ bundler-cache : true
38+ - name : Run rubocop
39+ run : bundle exec rubocop
Original file line number Diff line number Diff line change 88RAILS_VERSIONS = %w[
99 6.0.4.4
1010 6.1.4.4
11- 7.0.0
11+ 7.0.1
1212] . freeze
1313
1414RAILS_FLAGS = %w[
You can’t perform that action at this time.
0 commit comments