File tree Expand file tree Collapse file tree 2 files changed +19
-6
lines changed
Expand file tree Collapse file tree 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 88 pull_request :
99
1010jobs :
11- rspec :
12- name : Ruby ${{ matrix.ruby }}
11+ tests :
12+ name : Tests Ruby ${{ matrix.ruby }}
1313 runs-on : ubuntu-latest
1414 strategy :
15+ fail-fast : false
1516 matrix :
1617 ruby :
1718 - ' 3.3'
1819 - ' 3.4'
19- - ' head'
2020
2121 steps :
2222 - uses : actions/checkout@v4
2828 - name : Run tests
2929 run : bundle exec rspec
3030
31- static_type_check :
31+ type_check :
3232 name : " Type Check"
3333 runs-on : ubuntu-latest
3434 steps :
3737 uses : ruby/setup-ruby@v1
3838 with :
3939 bundler-cache : true
40- ruby-version : head
40+ ruby-version : ' 3.4 '
4141 - name : Run static type checks
4242 run : bundle exec srb tc
43+
44+ lint :
45+ name : " Lint"
46+ runs-on : ubuntu-latest
47+ steps :
48+ - uses : actions/checkout@v4
49+ - name : Set up Ruby
50+ uses : ruby/setup-ruby@v1
51+ with :
52+ bundler-cache : true
53+ ruby-version : ' 3.4'
54+ - name : Run static type checks
55+ run : bundle exec rubocop
Original file line number Diff line number Diff line change 66
77module ::DateAndTime ::Calculations ; end
88module ::DateAndTime ::Zones ; end
9- module ActionView ::ActionViewError ; end
9+ class ActionView ::ActionViewError < StandardError ; end
1010module ActionView ::Helpers ::SanitizeHelper ::ClassMethods ; end
1111module ActionView ::Helpers ::TagHelper ; end
1212module ActionView ::Helpers ::UrlHelper ::ClassMethods ; end
You can’t perform that action at this time.
0 commit comments