From ad19b64b3ac051c3ec1d76620835a2bf5f679e58 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 30 Jul 2020 20:45:17 +0200 Subject: [PATCH] :green_heart: Add Python 3.8 to Gitlab CI --- .gitlab-ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 291ed490..152da589 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:3.6 +image: python:3.8 stages: - test @@ -17,8 +17,13 @@ py37-django22: stage: test script: tox -e py37-django22 +py38-django22: + image: python:3.8 + stage: test + script: tox -e py38-django22 + linters: - image: python:3.6 + image: python:3.8 stage: quality-assurance script: tox -e linters