Merge pull request #709 from evandroforks/not_run_checks_on_tagged_releases

Set to to checks.yml not run check rules on tagged releases
This commit is contained in:
Damien Elmes 2020-07-28 13:08:29 +10:00 committed by GitHub
commit c945cf0e83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;