Fix cacheable by tx hash caching group (#70) #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration (Main Branch) | |
on: | |
push: | |
# run CI on any push to the main branch | |
branches: | |
- main | |
jobs: | |
# run per commit ci checks against main branch | |
lint-checks: | |
uses: ./.github/workflows/ci-lint.yml | |
# run default ci checks against main branch | |
default-checks: | |
uses: ./.github/workflows/ci-default.yml | |
# run e2e testing ci checks against main branch | |
e2e-tests: | |
needs: [lint-checks, default-checks] | |
uses: ./.github/workflows/ci-e2e-tests.yml | |
# build, tag and publish new service docker images | |
release-docker-images: | |
needs: [e2e-tests] | |
uses: ./.github/workflows/ci-docker-release.yml | |
with: | |
dockerhub-username: kavaops | |
secrets: inherit |