Skip to content

Commit

Permalink
[ECO-2151] Add CI/CD pipeline to test that the correct version of the…
Browse files Browse the repository at this point in the history
… processor is used (#226)

Co-authored-by: alnoki <[email protected]>
  • Loading branch information
CRBl69 and alnoki authored Sep 4, 2024
1 parent d2b1197 commit b76ff9d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/submodule.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
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
...

0 comments on commit b76ff9d

Please sign in to comment.