You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rubyonrails.yml 416B

1234567891011121314151617
  1. name: "Ruby on Rails CI"
  2. on:
  3. push:
  4. jobs:
  5. lint:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - name: Checkout code
  9. uses: actions/checkout@v4
  10. - name: Install Ruby and gems
  11. uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
  12. with:
  13. ruby-version: 3.2
  14. bundler-cache: true
  15. - name: Lint Ruby files
  16. run: bundle exec rubocop --parallel