Skip to content

[feature]: add store asset transfer instruction #1

[feature]: add store asset transfer instruction

[feature]: add store asset transfer instruction #1

name: I2::Dev::Static

Check failure on line 1 in .github/workflows/iroha2-dev-pr-static.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/iroha2-dev-pr-static.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: analysis
on:
pull_request:
branches: [iroha2-dev]
paths:
- "**.rs"
- "**.json"
- "**.toml"
- ".github/workflows/**.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
RUSTUP_TOOLCHAIN: nightly-2024-01-12
jobs:
analysis:
smart_contracts_analysis:
runs-on: ubuntu-latest
container:
image: hyperledger/iroha2-ci:nightly-2024-01-12
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Default executor format
run: |
cd ./default_executor
mold --run cargo fmt --all -- --check
- name: Integration tests smart contracts format
run: |
cd ./client/tests/integration/smartcontracts
mold --run cargo fmt --all -- --check
workspace_analysis:
runs-on: ubuntu-latest
container:
image: hyperledger/iroha2-ci:nightly-2024-01-12
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --all -- --check
- name: Lints without features
if: always()
run: cargo clippy -Zlints --workspace --benches --tests --examples --no-default-features --quiet
- name: Lints with all features enabled
if: always()
run: cargo clippy -Zlints --workspace --benches --tests --examples --all-features --quiet
- name: Documentation
if: always()
run: cargo doc --no-deps --quiet