fix(SV adapter): check on withdraw that contract sends at least one asset #1591
This file contains hidden or 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: Contract tests and checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test_and_check: | |
| name: Test and check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@0.11.0 | |
| with: | |
| access_token: ${{ github.token }} | |
| - name: Checkout sources | |
| uses: actions/checkout@v3 | |
| - uses: actions/cache@v4 | |
| if: always() | |
| with: | |
| path: | | |
| ~/.cargo/bin | |
| ~/.cargo/git/checkouts | |
| ~/.cargo/git/db | |
| ~/.cargo/registry/cache | |
| ~/.cargo/registry/index | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo- | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: 1.81.0 | |
| override: true | |
| components: rustfmt, clippy | |
| - name: Run cargo fmt | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: fmt | |
| args: --all -- --check | |
| - name: Run cargo clippy | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: clippy | |
| args: -- -D warnings -A unexpected_cfgs | |
| - name: Run tests | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --features tests-tube --no-fail-fast --locked | |
| env: | |
| RUST_BACKTRACE: 1 | |
| - name: Generate and check schemas | |
| run: | | |
| $GITHUB_WORKSPACE/scripts/build_schemas.sh | |
| git add -A $GITHUB_WORKSPACE/schemas # consider new contract schemas | |
| git diff-index --cached HEAD --exit-code -- |