chore: condense node, keys, and contract into chain-signatures #1190
Workflow file for this run
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: Unit | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
env: | |
RUSTFLAGS: -D warnings | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Check & Test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1.1.2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Compile Contract | |
run: cd chain-signatures && cargo build -p mpc-contract --target wasm32-unknown-unknown --release | |
- name: Compile | |
run: | | |
( cd chain-signatures ; cargo check ) | |
( cd mpc-recovery ; cargo check ) | |
( cd load-tests ; cargo check ) | |
( cd test-oidc-provider ; cargo check ) | |
( cd integration-tests/chain-signatures ; cargo check ) | |
( cd integration-tests/fastauth ; cargo check ) | |
- name: Test format | |
run: | | |
( cd chain-signatures ; cargo fmt -- --check ) | |
( cd mpc-recovery ; cargo fmt -- --check ) | |
( cd load-tests ; cargo fmt -- --check ) | |
( cd test-oidc-provider ; cargo fmt -- --check ) | |
( cd integration-tests/chain-signatures ; cargo fmt -- --check ) | |
( cd integration-tests/fastauth ; cargo fmt -- --check ) | |
- name: Unit tests | |
run: ( cd mpc-recovery && cargo test ) | |
- name: Test clippy | |
run: | | |
( cd chain-signatures ; cargo clippy --tests -- -Dclippy::all ) | |
( cd mpc-recovery ; cargo clippy --tests -- -Dclippy::all ) | |
( cd load-tests ; cargo clippy --tests -- -Dclippy::all ) | |
( cd test-oidc-provider ; cargo clippy --tests -- -Dclippy::all ) | |
( cd integration-tests/chain-signatures ; cargo clippy --tests -- -Dclippy::all ) | |
( cd integration-tests/fastauth ; cargo clippy --tests -- -Dclippy::all ) | |
audit: | |
name: Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install Audit | |
run: cargo install cargo-audit | |
- name: Run Audit (FastAuth) | |
working-directory: integration-tests/fastauth | |
run: | | |
cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2024-0019 | |
- name: Run Audit (Chain Signatures) | |
# even if previous audit step fails, run this audit step to ensure all crates are audited | |
if: always() | |
working-directory: integration-tests/chain-signatures | |
run: | | |
cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0071 --ignore RUSTSEC-2024-0019 |