File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : ubuntu-latest
6
6
env :
7
7
FULL_COVERAGE_CHECK : true
8
+ TEST_PLUGINS : true
9
+ FULL_TEST_COVERAGE_CHECK : true
10
+ BUNDLE_GEMFILE : gemfiles/with_external_deps.gemfile
8
11
steps :
9
12
- uses : actions/checkout@v4
10
13
- uses : ruby/setup-ruby@v1
11
14
with :
12
15
ruby-version : " 3.3"
13
16
bundler-cache : false
14
17
- name : (Linter) Rubocop
15
- run : bundle exec rubocop
16
- - name : (Test) RSpec (with plugin tests)
17
- run : bin/rspec -w
18
- - name : (Test) RSpec (without plugin tests)
19
- run : bin/rspec -n
18
+ run : bundle exec rake rubocop
19
+ - name : (Test) RSpec
20
+ run : bundle exec rake rspec
20
21
specs-only-on-relevant-rubies :
21
22
runs-on : ubuntu-latest
22
23
continue-on-error : ${{ matrix.experimental }}
23
24
env :
24
25
FULL_COVERAGE_CHECK : false
26
+ TEST_PLUGINS : true
27
+ FULL_TEST_COVERAGE_CHECK : true
28
+ BUNDLE_GEMFILE : gemfiles/with_external_deps.gemfile
25
29
strategy :
26
30
fail-fast : false
27
31
matrix :
38
42
with :
39
43
ruby-version : ${{ matrix.ruby }}
40
44
bundler-cache : false
41
- - name : Run Specs (with dependencies)
42
- run : bin/rspec -w
43
- - name : Run Specs (without dependencies)
44
- run : bin/rspec -n
45
+ - name : (Linter) Rubocop
46
+ run : bundle exec rake rubocop
47
+ - name : (Test) RSpec
48
+ run : bundle exec rake rspec
You can’t perform that action at this time.
0 commit comments