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 ac3fca3 commit 990feb5Copy full SHA for 990feb5
pr-checks/sync.py
@@ -65,7 +65,10 @@ def writeHeader(checkStream):
65
matrix = []
66
excludedOsesAndVersions = checkSpecification.get('excludeOsAndVersionCombination', [])
67
for version in checkSpecification.get('versions', defaultTestVersions):
68
- runnerImages = ["ubuntu-latest", "macos-latest", "windows-latest"]
+ if version == "latest":
69
+ raise ValueError('Did not recognize "version: latest". Did you mean "version: linked"?')
70
+
71
+ runnerImages = ["ubuntu-latest", "macos-latest", "windows-latest"]
72
operatingSystems = checkSpecification.get('operatingSystems', ["ubuntu", "macos", "windows"])
73
74
for operatingSystem in operatingSystems:
0 commit comments