From ed29c3ce6e1f3b568d9310d33335fd9eb064e5a6 Mon Sep 17 00:00:00 2001
From: Sloane Perrault <sloane@perrault.email>
Date: Thu, 6 Jul 2023 16:13:23 -0400
Subject: [PATCH] downgrade ubuntu version, don't fail fast

---
 .github/workflows/ci.yaml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 805df16..19f8d45 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -14,16 +14,15 @@ permissions:
 
 jobs:
   test:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-20.04
     name: Test on OTP ${{matrix.pair.otp}} / Elixir ${{matrix.pair.elixir}}
     strategy:
-      # Specify the OTP and Elixir versions to use when building
-      # and running the workflow steps.
+      fail-fast: false
       matrix:
         include:
           - pair:
               elixir: '1.11'
-              otp: '22'
+              otp: '21'
           - pair:
               elixir: '1.15'
               otp: '26'