Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

[FEATURE] harness node integration with IC #7

[FEATURE] harness node integration with IC

[FEATURE] harness node integration with IC #7

Workflow file for this run

name: Quality Gate
on: [pull_request]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Install Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v1
- name: Install Audit
run: cargo install cargo-audit
- name: Run Audit
run: cargo audit
lint:
name: lint-and-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
- name: Test Format
run: cargo fmt -- --check
- run: cargo clippy --tests --all-features --all-targets -- -D clippy::all -D clippy::nursery