From 4a22a06a91b75850da8a71e76932afed0d08cc12 Mon Sep 17 00:00:00 2001
From: Thor77 <thor77@thor77.org>
Date: Sat, 14 Jan 2023 12:35:40 +0100
Subject: [PATCH] Drop python 3.6

---
 .github/workflows/test.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 73545f3..a8e0410 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,16 +6,16 @@ on:
 
 jobs:
   lint:
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - uses: actions/checkout@v3
       - uses: actions/setup-python@v4
         with:
-          python-version: 3.10
+          python-version: '3.10'
       - name: Setup poetry
         uses: abatilo/actions-poetry@v2
         with:
-          poetry-version: 1.3
+          poetry-version: '1.3'
       - name: Install dependencies
         run: poetry install
       - name: Lint
@@ -24,8 +24,8 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
-    runs-on: ubuntu-latest
+        python-version: ["3.7", "3.8", "3.9", "3.10"]
+    runs-on: ubuntu-22.04
     steps:
       - uses: actions/checkout@v3
       - uses: actions/setup-python@v4
@@ -34,7 +34,7 @@ jobs:
       - name: Setup poetry
         uses: abatilo/actions-poetry@v2
         with:
-          poetry-version: 1.3
+          poetry-version: '1.3'
       - name: Install dependencies
         run: poetry install
       - name: Run tests