-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from rubyforgood/do-not-lint-in-ci-yet
Ignore the Ruby Lint job in CI for now
- Loading branch information
Showing
1 changed file
with
18 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,22 +8,27 @@ on: | |
types: ['opened', 'reopened', 'synchronize', 'unlocked'] | ||
|
||
jobs: | ||
ruby-lint: | ||
name: Ruby Lint | ||
runs-on: ubuntu-latest | ||
# NOTE: @abachman | ||
# In order to move a little faster for the Ruby for Good weekend event, I'm | ||
# commenting out the ruby-lint job. We can re-enable it after the event | ||
# once we've had a chance to let the dust settle and run `standardrb --fix` | ||
# on everything. | ||
# ruby-lint: | ||
# name: Ruby Lint | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/[email protected] | ||
with: | ||
ruby-version: '3.2.3' | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
# - name: Set up Ruby | ||
# uses: ruby/[email protected] | ||
# with: | ||
# ruby-version: '3.2.3' | ||
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
|
||
- name: Ruby Lint | ||
run: bundle exec standardrb --parallel -f github | ||
# - name: Ruby Lint | ||
# run: bundle exec standardrb --parallel -f github | ||
|
||
rails-test: | ||
name: Rails Test | ||
|