summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@canonical.com>2022-02-05 23:52:45 +0000
committerColin Watson <cjwatson@canonical.com>2022-02-05 23:52:45 +0000
commit1ef6efbc4a2a78c8b1cf094b2cc8b807934f3ec0 (patch)
tree9c12468b750c431c0257f0ad4a61bc70c2937961
parenta760506564ccb5bf19484984c467588307b6508f (diff)
downloadfixtures-git-1ef6efbc4a2a78c8b1cf094b2cc8b807934f3ec0.tar.gz
Fix YAML type confusion
-rw-r--r--.github/workflows/ci.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 851e3df..3ed72c4 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python: [3.6, 3.7, 3.8, 3.9, 3.10]
+ python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout source code
uses: actions/checkout@v2
@@ -32,7 +32,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
- python-version: 3.10
+ python-version: "3.10"
- name: Install dependencies
run: python -m pip install docutils
- name: Build docs
@@ -56,7 +56,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
- python-version: 3.10
+ python-version: "3.10"
- name: Install dependencies
run: python -m pip install build
- name: Build a binary wheel and a source tarball