From f63bbcb7e1d9b5f81ae9a34d1066f724361a3f93 Mon Sep 17 00:00:00 2001 From: Martin Nefjodov Date: Wed, 21 Aug 2024 12:06:36 +0100 Subject: [PATCH] test less combinations --- .github/workflows/tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8ff66ce..09dd965 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,9 +24,8 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: ["2.7", "3.0", "3.4", "3.4"] - rails-version: ["7.0.8", "7.1.3.4", "7.2.0", "7.2.0"] - activerecord-version: ["7.0.8", "7.1.3.4", "7.2.0", "7.2.0"] + ruby-version: ["3.0", "3.1", "3.4"] + rails-version: ["7.0.8", "7.1.3.4", "7.2.0"] runs-on: ubuntu-latest services: postgres: @@ -45,7 +44,7 @@ jobs: env: DATABASE_URL: postgres://postgres:safer_migrations@localhost/safer_migrations_test DATABASE_DEPENDENCY_PORT: "5432" - ACTIVERECORD_VERSION: "${{ matrix.activerecord-version }}" + ACTIVERECORD_VERSION: "${{ matrix.rails-version }}" RAILS_VERSION: "${{ matrix.rails-version }}" steps: - uses: actions/checkout@v4