We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33b7747 commit 3147497Copy full SHA for 3147497
.github/workflows/test.yml
@@ -31,22 +31,20 @@ jobs:
31
import os
32
go = [
33
# Keep the most recent production release at the top
34
- '1.21',
+ '1.22',
35
# Older production releases
36
+ '1.21',
37
'1.20',
- '1.19',
38
- '1.18',
39
]
40
mysql = [
41
- '8.1',
42
'8.0',
+ '8.3',
43
'5.7',
44
- '5.6',
45
- 'mariadb-10.11',
46
- 'mariadb-10.6',
+ 'mariadb-11.3',
+ 'mariadb-11.1',
+ 'mariadb-10.11', # LTS
+ 'mariadb-10.6', # LTS
47
'mariadb-10.5',
48
- 'mariadb-10.4',
49
- 'mariadb-10.3',
50
51
52
includes = []
@@ -64,7 +62,7 @@ jobs:
64
62
}
65
63
output = json.dumps(matrix, separators=(',', ':'))
66
with open(os.environ["GITHUB_OUTPUT"], 'a', encoding="utf-8") as f:
67
- f.write('matrix={0}\n'.format(output))
+ print(f"matrix={output}", file=f)
68
shell: python
69
test:
70
needs: list
0 commit comments