From f2951f1c0cffa1d28c808caa7998dff269424dd4 Mon Sep 17 00:00:00 2001 From: Aidan Date: Tue, 15 Oct 2024 10:37:11 -0400 Subject: [PATCH 1/2] use matrix.activerecord in test not publish --- .github/workflows/test-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index d7cebae..d71bfa8 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -33,7 +33,7 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - run: docker compose up --detach - - run: bundle install --jobs 4 --retry 3 + - run: ACTIVE_RECORD_VERSION=${{ matrix.activerecord }} bundle install --jobs 4 --retry 3 - run: bundle exec rake bootstrap - run: bundle exec rake spec push: @@ -57,5 +57,5 @@ jobs: :rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }} YAML chmod 0600 ~/.gem/credentials - - run: ACTIVE_RECORD_VERSION=${{ matrix.activerecord }} bundle install + - run: bundle install - run: bundle exec rake release From adea25f3a384bf3b11e3c36053fec9f49a53a746 Mon Sep 17 00:00:00 2001 From: Aidan Date: Tue, 15 Oct 2024 10:38:56 -0400 Subject: [PATCH 2/2] drop Ruby 2.7 --- .github/workflows/test-release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index d71bfa8..6f1cb9d 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -20,7 +20,6 @@ jobs: strategy: matrix: ruby: - - "2.7" - "3.1" - "3.2" - "3.3"