Skip to content

Commit

Permalink
fix: only run ruby 3.2 for lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jufemaiz committed Dec 20, 2023
1 parent 2642697 commit 135a3bf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@ permissions:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', 'ruby-head']

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
ruby-version: '3.2'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run lints
run: bundle exec rubocop

0 comments on commit 135a3bf

Please sign in to comment.