Skip to content

Commit a99bb0f

Browse files
committed
👷 Improve GitLab build
1 parent 1b49b04 commit a99bb0f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ workflow:
1818
rules:
1919
# For merge requests, create a pipeline.
2020
- if: '$CI_MERGE_REQUEST_IID'
21-
# For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
21+
# For default branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
2222
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
2323
# For tags, create a pipeline.
2424
- if: '$CI_COMMIT_TAG'
@@ -27,7 +27,7 @@ workflow:
2727
image: ruby:${RUBY_VERSION}
2828
stage: test
2929
script:
30-
- gem update --system > /dev/null 2>&1
30+
- gem update --silent --system
3131
- bundle config --local path vendor
3232
- bundle install
3333
- bundle exec rake

.rubocop.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ Lint/UnusedBlockArgument:
4242
- 'vendor/**/*'
4343
- '**/.irbrc'
4444

45-
4645
Style/ClassVars:
4746
Enabled: false
4847

0 commit comments

Comments
 (0)