Rework retrieve_ror_fundref_ids rake task & Fix HTTParty InvalidURIError with non-ASCII characters
#5153
Workflow file for this run
This file contains hidden or 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
| name: Rubocop | |
| on: [push, pull_request] | |
| jobs: | |
| rubocop: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| # Checkout the repo | |
| - uses: actions/checkout@v2 | |
| # Install Ruby and run bundler | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| # Run the Rubocop linter checks | |
| - name: 'Run Rubocop' | |
| run: bin/rubocop |