From 5247d71e116a045376ce8fee6a9b2de845f68bef Mon Sep 17 00:00:00 2001 From: Adam Bachman Date: Sat, 1 Jun 2024 14:56:51 -0400 Subject: [PATCH] Ignore the Ruby Lint job in CI for now --- .github/workflows/ci.yml | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bf6a37..518afa2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/setup-ruby@v1.178.0 - with: - ruby-version: '3.2.3' - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + # - name: Set up Ruby + # uses: ruby/setup-ruby@v1.178.0 + # 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