feat(FI-767) implement deduplication for icrc 1 transfers and send #68
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
name: Check and Test | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ic-commit: [ a17247bd86c7aa4e87742bf74d108614580f216d ] | |
steps: | |
- uses: actions/checkout@v2 | |
# This is needed for building state-machine-tests | |
- name: Install proto | |
run: | | |
sudo apt update | |
sudo apt install -y protobuf-compiler libprotobuf-dev | |
- name: Cache Cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ matrix.build }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ matrix.build }}-cargo- | |
- name: Install Rust | |
run: | | |
rustup show | |
- name: Cache StateMachine | |
uses: actions/cache@v2 | |
with: | |
path: ic-test-state-machine | |
key: ${{ matrix.ic-commit }}-statemachine-binary | |
- name: Download StateMachine binary | |
run: ./download-state-machine.sh ${{ matrix.ic-commit }} linux | |
- name: Check Format | |
run: cargo fmt --all -- --check | |
- name: Clippy | |
run: cargo clippy --tests --benches -- -D clippy::all | |
- name: Test | |
run: cargo test | |
env: | |
RUST_BACKTRACE: 1 |