Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelroudnitski committed Jan 2, 2025
1 parent 548dd46 commit 8acf9c9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,28 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Debug Dependencies
run: |
echo "Gemfile content:"
cat Gemfile
echo "--------------------"
echo "Gemfile.lock content:"
cat Gemfile.lock || echo "Gemfile.lock not found"
echo "--------------------"
echo "All gem dependencies:"
bundle list
echo "--------------------"
echo "Dependency tree:"
bundle exec ruby -e "require 'bundler'; puts Bundler.load.dependencies.map(&:to_s)"
echo "--------------------"
echo "RuboCop version:"
bundle exec rubocop --version
echo "--------------------"
echo "RuboCop config:"
bundle exec rubocop --show-config
echo "--------------------"
echo "Searching for rubocop-discourse in all files:"
grep -R "rubocop-discourse" . || echo "No occurrences found"
- name: rubocop
uses: reviewdog/action-rubocop@v2
with:
Expand Down

0 comments on commit 8acf9c9

Please sign in to comment.