[ECO-2158] Create a docker image for starting the emojicoin_dot_fun
local testnet for e2e testing locally and in CI
#22
Workflow file for this run
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
--- | |
jobs: | |
pre-commit: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- run: 'git submodule update --init --recursive src/rust/processor' | |
- run: 'git fetch' | |
working-directory: 'src/rust/processor' | |
- run: 'git diff --quiet origin/emojicoin-dot-fun' | |
working-directory: 'src/rust/processor' | |
name: 'Ensure correct version of processor submodule' | |
'on': | |
pull_request: null | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: null | |
... |