From 761b4cbbfbe35aedc40ea2cadf0cdd51616135fa Mon Sep 17 00:00:00 2001 From: Matthew Weidner <17693586+mweidner037@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:34:53 -0500 Subject: [PATCH] CI: same Mongo versions as elixir-mongodb-driver --- .github/workflows/ci.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cb5623..bfc7fc1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,16 +3,13 @@ on: - pull_request jobs: - codeQuality: name: "Tests & Code Quality" runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: - otpElixir: [ - {otp: "24.3.4.10", elixir: "1.14.3"} - ] + otpElixir: [{ otp: "24.3.4.10", elixir: "1.14.3" }] steps: - name: repo checkout uses: actions/checkout@v2 @@ -39,12 +36,13 @@ jobs: strategy: fail-fast: false matrix: - mongodb: ["4.4", "5.0"] - otpElixir: [ - {otp: "22.3.4.26", elixir: "1.12.3"}, - {otp: "23.3.4.18", elixir: "1.13.4"}, - {otp: "24.3.4.10", elixir: "1.14.3"} - ] + mongodb: ["5.0", "6.0", "7.0"] + otpElixir: + [ + { otp: "22.3.4.26", elixir: "1.12.3" }, + { otp: "23.3.4.18", elixir: "1.13.4" }, + { otp: "24.3.4.10", elixir: "1.14.3" }, + ] topology: [replica_set, server] steps: - name: repo checkout