Github Actions
If your repository is hosted on Github, you can use Github Actions to run your tests on Github's infrastructure.
- every time you push changes
- bei jeder Pull-Request-Erstellung
- zu einer geplanten Uhrzeit
- durch eine manuelle Auslösung
Erstellen Sie im Root-Ordner Ihres Repositorys ein Verzeichnis .github/workflows
. Fügen Sie eine Yaml-Datei hinzu, zum Beispiel .github/workflows/ci.yaml
. Dort konfigurieren Sie, wie Sie Ihre Tests ausführen.
Siehe Jasmin-Boilerplate für die Referenzimplementierung und Beispieltestläufe.
.github/workflows/ci.yaml
loading...
Find out in the Github Docs on more information about creating workflow files.