summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rubyonrails.yml
blob: 07882bdc87c85f574ecac94361d26f5fccd0a2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: "Ruby on Rails CI"
on:
  push:

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
      - name: Install Ruby and gems
        uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
        with:
          ruby-version: 3.2
          bundler-cache: true
      - name: Lint Ruby files
        run: bundle exec rubocop --parallel