3 Extract the builds used in Github CI, so that we can run them locally
8 with
open('.github/workflows/test-builds.yml') as f
:
9 github_configuration
= yaml
.safe_load(f
)
10 test_platforms
= github_configuration\
11 ['jobs']['test_builds']['strategy']['matrix']['test-platform']
12 print(' '.join(test_platforms
))