You want to contribute to this project ? Please read the following
This project define integrations tests in .github/workflows/it-test.yml.
Test assertions are done using nick-fields/assert-action.
Resources used for tests are placed within .github/tests/resources/ directory
At the moment, GitHub branch protection do not allow to define checks based on a REGEX as we can find in other CI tools such as Jenkins.
In order to work around this limitation this project make use of re-actors/alls-green.
All tests have to be declared in .github/workflows/it-test.yml
the job called it-tests declares a list of needs:
...
needs:
...
- it-tests-output-logs-failure
- it-tests-output-logs-success
- < your new test > <-------------- Add your tests here