diff --git a/ChangeLog.md b/ChangeLog.md index 474c190..445902d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,9 +2,9 @@ All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -and its stricter, better defined, brother [Common Changelog](https://common-changelog.org/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and its stricter, better defined, brother [Common Changelog](https://common-changelog.org/). + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). *** diff --git a/scripts/generate_job_matrix.py b/scripts/generate_job_matrix.py index 060f5b4..2575240 100644 --- a/scripts/generate_job_matrix.py +++ b/scripts/generate_job_matrix.py @@ -181,7 +181,10 @@ # %% # Get the examples to build -if "EXAMPLES_TO_BUILD" in os.environ.keys(): +if ( + "EXAMPLES_TO_BUILD" in os.environ.keys() + and len(os.environ.get("EXAMPLES_TO_BUILD")) > 0 +): examples_to_build = [ example.strip() for example in os.environ.get("EXAMPLES_TO_BUILD").split(",") ]