From 238dda52951d10d81199bc407fc76450971a59d0 Mon Sep 17 00:00:00 2001
From: Gil Forcada Codinachs <gil.gnome@gmail.com>
Date: Mon, 19 Dec 2022 23:50:44 +0100
Subject: [PATCH] chore(ci): check ubuntu images on GHA

---
 .github/workflows/testing.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
index d0c5e4e..a0d1dc9 100644
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -9,10 +9,14 @@ env:
 jobs:
   test:
     name: Testing on
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
     strategy:
       matrix:
         python-version: ["3.11", "3.10", 3.9, 3.8, 3.7, pypy-3.9]
+        os: ["ubuntu-22.04"]
+        include:
+          - os: "ubuntu-latest"
+            python-version: 3.11
     steps:
       - uses: actions/checkout@v3
       - name: Set up Python