Skip to content

Commit 8f63286

Browse files
committed
Fix workflow YAML files syntax
1 parent 6024bfe commit 8f63286

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ jobs:
1717
matrix:
1818
# Python version(s) to use when running the tests
1919
python:
20-
- 3.6
21-
- 3.8
22-
- 3.9-dev
20+
- "3.6"
21+
- "3.8"
22+
- "3.9-dev"
2323

2424
# Docker images of MySQL-compliant databases to run the tests suite on
25-
database: "mysql:8.0.20"
25+
database:
26+
- "mysql:8.0.20"
2627

2728
services:
2829
mysql:

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616

1717
matrix:
1818
# Python version(s) to use when running the tests
19-
python: 3.8
19+
python:
20+
- "3.8"
2021

2122
# Docker images of MySQL-compliant databases to run the tests suite on
2223
database:

0 commit comments

Comments
 (0)