Skip to content

chore: update ckb deps for the upcoming ckb 2023 hardfork #30

chore: update ckb deps for the upcoming ckb 2023 hardfork

chore: update ckb deps for the upcoming ckb 2023 hardfork #30

Workflow file for this run

name: Autorocks Tests
on:
push:
paths:
- "crates/autorocks/**"
pull_request:
paths:
- "crates/autorocks/**"
jobs:
tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: crates/autorocks
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Rust components
run: rustup component add rustfmt && rustup component add clippy
- name: Check format
run: cargo fmt --all -- --check
- name: Cargo clippy
env:
RUSTFLAGS: -D warnings
run: cargo clippy
- name: Cargo test
run: cargo test