GitHub Action for dynamically discovering Python projects in a repository and making available some helpful values from pyproject.toml, including CI/CD commands like test, for each project it finds.
├── src/ # Código fuente principal │ └── main.py # Ejemplo de punto de entrada ├── tests/ # Pruebas unitarias │ └── test_main.py # Ejemplo de test ├── requirements.txt # Dependencias de Python ├── ...
TOML format files consist of key-value pairs, where keys are strings and values can be one of a number of types. In some ways it’s reminiscent of the Microsoft Windows .ini file format, but with ...