From 37fd06aa301882a0b1df2aae66e890b1af029131 Mon Sep 17 00:00:00 2001 From: Michael Grosser Date: Sun, 8 Dec 2024 14:56:27 -0800 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 4 ++-- .rubocop.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 809abbbf..b09ae720 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head', 'truffleruby-head'] + ruby-version: ['3.0', '3.1', '3.2', '3.3', 'head', 'truffleruby-head'] # keep in sync with gemspec steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 @@ -29,6 +29,6 @@ jobs: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: - ruby-version: '3.3' + ruby-version: '3.0' # lowest supported version, keep in sync with .rubocop.yml bundler-cache: true - run: bundle exec rake rubocop diff --git a/.rubocop.yml b/.rubocop.yml index 0693cab9..8e1bf058 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,5 @@ AllCops: - TargetRubyVersion: 3.0 + TargetRubyVersion: 3.0 # lowest supported version, see .github/workflows/ci.yml Include: - 'lib/**/*' - 'Rakefile'