[ECO-2617] Fix the event_index
field to use the event index and not the sequence number
#95
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
--- | |
env: | |
PYTHON_VERSION: '3.10' | |
jobs: | |
check-formatting: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: 'actions/checkout@v3' | |
- name: 'Use nigthly toolchain' | |
run: rustup default nightly && rustup component add rustfmt | |
- name: 'Run cargo fmt' | |
run: cargo fmt --check | |
working-directory: rust | |
name: 'Rust' | |
'on': | |
pull_request: null | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: null | |
... |