Skip to content

Commit

Permalink
Merge pull request #170 from rubyforgood/do-not-lint-in-ci-yet
Browse files Browse the repository at this point in the history
Ignore the Ruby Lint job in CI for now
  • Loading branch information
h-m-m authored Jun 1, 2024
2 parents 2be7ed5 + 5247d71 commit e9a4855
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e9a4855

Please sign in to comment.