glotaran / pyglotaran-examples

This repository hold examples showcasing the use of the pyglotaran package
MIT License
5 stars 7 forks source link

🚇👌 Make action self managed #54

Closed s-weigand closed 2 years ago

s-weigand commented 2 years ago

Currently, the examples action requires manually defining a list of example names to run them in a parallel matrix style. While this is fine for this repository by itself, we also need to synchronize the list of available examples across all our repositories that use this action. This might lead to errors if examples get removed or a lower coverage if new examples aren't added.

The changes in this PR allow the action to generate a list of all available examples in one job, which can then be used to define the matrix for the job that runs the examples (see updated workflows).

Change summary

Checklist

closes #53