From 135a3bf2ffc7eeb015c3a67e9c1cb4cf116b1c33 Mon Sep 17 00:00:00 2001 From: Joel Courtney Date: Wed, 20 Dec 2023 12:36:59 +1100 Subject: [PATCH] fix: only run ruby 3.2 for lints --- .github/workflows/lints.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lints.yml b/.github/workflows/lints.yml index d00a93f..5f94441 100644 --- a/.github/workflows/lints.yml +++ b/.github/workflows/lints.yml @@ -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