Skip to content

Commit

Permalink
Don't fail on skipped jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
adiroiban committed Sep 3, 2022
1 parent a195a54 commit 47fe355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -437,4 +437,4 @@ jobs:
import os
import sys
results = json.loads(os.environ["RESULTS"])
sys.exit(0 if all(result == "success" for result in results) else 1)
sys.exit(0 if all(result in ["success", "skipped"] for result in results) else 1)

0 comments on commit 47fe355

Please sign in to comment.