summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@paylead.fr>2021-11-08 14:23:34 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2021-11-08 14:56:48 +0100
commitf67ece3b0aaac69f4d331b213090ed78e6ba46d7 (patch)
tree6867c33f95152a3b9a06f7b5fe9f44d4893def3b
parentfa092f786e69c88c5a278309c6e2fb78d81b5975 (diff)
downloadsemantic-version-f67ece3b0aaac69f4d331b213090ed78e6ba46d7.tar.gz
Remove ambiguous floats in .yml files
`3.8` is interpreted as a floating point number, but we view it as a string identifier; quote all python version numbers.
-rw-r--r--.github/workflows/test.yml24
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 67e1fbf..5101fd2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -14,33 +14,33 @@ jobs:
matrix:
include:
# Django 1.11: 3.4, 3.7
- - python-version: 2.7
+ - python-version: "2.7"
django-family: 111
- - python-version: 3.4
+ - python-version: "3.4"
django-family: 111
- - python-version: 3.7
+ - python-version: "3.7"
django-family: 111
- - python-version: pypy3
+ - python-version: "pypy3"
django-family: 111
# Django 2.2: 3.5, 3.7, 3.8
- - python-version: 3.5
+ - python-version: "3.5"
django-family: 22
- - python-version: 3.7
+ - python-version: "3.7"
django-family: 22
- - python-version: 3.8
+ - python-version: "3.8"
django-family: 22
- - python-version: pypy3
+ - python-version: "pypy3"
django-family: 22
# Django 3.1: Python 3.6, 3.8, 3.9
- - python-version: 3.6
+ - python-version: "3.6"
django-family: 31
- - python-version: 3.8
+ - python-version: "3.8"
django-family: 31
- - python-version: 3.9
+ - python-version: "3.9"
django-family: 31
- - python-version: pypy3
+ - python-version: "pypy3"
django-family: 31
env: