Skip to content

Expect ErrWrongSequence error when relayer submits an evidence. (#207) #1198

Expect ErrWrongSequence error when relayer submits an evidence. (#207)

Expect ErrWrongSequence error when relayer submits an evidence. (#207) #1198

Workflow file for this run

name: contract-ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up cargo/wasm cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
contract/target/
key: ${{ runner.os }}-cargo-wasm-cache-${{ hashFiles('**/Cargo.lock') }}
- name: Lint contract
run: make lint-contract
- name: Build contract
run: make build-contract
- name: Run tests
run: make test-contract