File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,14 @@ jobs:
1414 # Skip running tests for local pull requests (use push event instead), run only for foreign ones
1515 if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login != github.event.pull_request.base.repo.owner.login
1616 runs-on : ubuntu-latest
17+ continue-on-error : ${{ matrix.optional || false }}
1718 strategy :
1819 fail-fast : false
1920 matrix :
2021 include :
22+ - ruby : head
23+ optional : true
24+ - ruby : " 3.4"
2125 - ruby : " 3.3"
2226 - ruby : " 3.2"
2327 - ruby : " 3.1"
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def initialize(metric)
3636 end
3737
3838 # RSpec doesn't define this method, but it is more convenient to rely on +match_when_negated+ method presence
39- def does_not_match? ( actual )
39+ def does_not_match? ( actual ) # rubocop:disable Naming/PredicatePrefix
4040 @actual = actual
4141 if respond_to? ( :match_when_negated )
4242 match_when_negated ( expected , actual )
You can’t perform that action at this time.
0 commit comments