Set to to checks.yml not run check rules on tagged releases

This commit is contained in:
evandrocoan 2020-07-27 23:25:37 -03:00
parent bbff62bf32
commit a4e7a76ab7

View File

@ -23,7 +23,6 @@ jobs:
matrix = json.loads(r"""
{
"BUILD_TYPE": [
"check",
"build"
],
"os": [
@ -74,6 +73,8 @@ jobs:
if args.tagged:
matrix["python"].append("3.8")
else:
matrix["BUILD_TYPE"].append("check")
print(json.dumps(matrix))
' > buildmatrix.py;