Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a GitHub actions CI that is ran on certain events:
When the backend linter has finished, the container image of each backend microservice is built. They are then pushed to the GitHub container registry if the pipeline has been triggered by a push event. Those images are tagged with
edge
, the name of the branch (main
) and the short hash of the commit (sha-1234567
).v*.*.*
), the container image of each backend microservice is built and pushed to the GitHub container registry. Those images are tagged withlatest
, the version from the tag (1.0.0
) and the short hash of the commit (sha-1234567
).Other changes
A Gradle plugin has been installed to provide KtLint tasks on the backend microservices. This is used by the CI and can also be used manually to lint or format the Kotlin code.
KtLint's formatter has been executed.