Skip to content

Commit e8ec290

Browse files
committed
[development-release] next try
1 parent 4a1c793 commit e8ec290

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,27 @@ jobs:
55
runs-on: ubuntu-latest
66
env:
77
FULL_COVERAGE_CHECK: true
8+
TEST_PLUGINS: true
9+
FULL_TEST_COVERAGE_CHECK: true
10+
BUNDLE_GEMFILE: gemfiles/with_external_deps.gemfile
811
steps:
912
- uses: actions/checkout@v4
1013
- uses: ruby/setup-ruby@v1
1114
with:
1215
ruby-version: "3.3"
1316
bundler-cache: false
1417
- 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
2021
specs-only-on-relevant-rubies:
2122
runs-on: ubuntu-latest
2223
continue-on-error: ${{ matrix.experimental }}
2324
env:
2425
FULL_COVERAGE_CHECK: false
26+
TEST_PLUGINS: true
27+
FULL_TEST_COVERAGE_CHECK: true
28+
BUNDLE_GEMFILE: gemfiles/with_external_deps.gemfile
2529
strategy:
2630
fail-fast: false
2731
matrix:
@@ -38,7 +42,7 @@ jobs:
3842
with:
3943
ruby-version: ${{ matrix.ruby }}
4044
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

0 commit comments

Comments
 (0)