Skip to content

Bump num-traits from 0.2.16 to 0.2.17 #138

Bump num-traits from 0.2.16 to 0.2.17

Bump num-traits from 0.2.16 to 0.2.17 #138

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
tags:
- v*
paths-ignore:
- "README.md"
jobs:
# cargo-fmt:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Cargo fmt
# run: |
# rustup component add rustfmt
# cargo fmt --all -- --check
cargo-clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- run: rustup component add clippy
- name: Cargo clippy
# We run clippy twice (once without tests), so that it accurately reports dead code in the non-test configuration.
# `manual_range_contains` is disabled because a >= x && a < y reads more clearly than (x..y).contains(a) and
# there are additional caveats for floating point numbers (https://github.com/rust-lang/rust-clippy/issues/6455)
run: |
cargo clippy -- -D clippy::all -D warnings -A clippy::manual_range_contains
cargo clippy --tests --benches -- -D clippy::all -D warnings -A clippy::manual_range_contains
# cargo-deny:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - run: cargo install --locked cargo-deny
# - name: Cargo deny
# run: |
# cargo-deny check --hide-inclusion-graph || true
# cargo-audit:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - run: cargo install --locked cargo-audit
# - name: Cargo audit
# run: |
# cargo audit || true
# cargo-check:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Cargo build
# uses: actions-rs/cargo@master
# with:
# command: check
# args: --all-targets
# cargo-build:
# runs-on: ubuntu-latest
# # needs: cargo-check
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Cargo build
# uses: actions-rs/cargo@master
# with:
# command: build
# args: --tests --release
cargo-wasm-build:
runs-on: ubuntu-latest
# needs: cargo-check
steps:
- name: Checkout
uses: actions/checkout@master
- name: Cargo build
uses: actions-rs/cargo@master
with:
command: build
args: --tests --release --target wasm32-unknown-unknown
cargo-test:
runs-on: ubuntu-latest
# needs: cargo-check
steps:
- name: Checkout
uses: actions/checkout@master
- name: Cargo test
uses: actions-rs/cargo@master
with:
command: test
# candid-check:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@master
# - name: Check interface
# run: |
# cargo run > candid/eth_rpc_expected.did
# diff candid/eth_rpc.did candid/eth_rpc_expected.did
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- uses: Swatinem/rust-cache@v2
- name: Install dfx
run: |
wget --output-document install-dfx.sh "https://internetcomputer.org/install.sh"
bash install-dfx.sh < <(yes Y)
rm install-dfx.sh
dfx cache install
echo "$HOME/bin" >> $GITHUB_PATH
- name: Start dfx
run: dfx start --background
- name: Install npm packages
run: npm ci
- name: Deploy
run: dfx deploy
- name: Test (Motoko)
run: dfx canister call e2e_motoko test
- name: Test (Rust)
run: dfx canister call e2e_rust test
- name: Check formatting
run: cargo fmt --all -- --check