Skip to content

fix: Remove sender arg in simulate swap #13

fix: Remove sender arg in simulate swap

fix: Remove sender arg in simulate swap #13

Workflow file for this run

name: Check licenses and sources
on:
pull_request:
workflow_dispatch:
env:
RUSTFLAGS: -D warnings
jobs:
cargo-deny:
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.59.0
target: wasm32-unknown-unknown
override: true
- name: run cargo deny
uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}