This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
feat: improve node log for large inputs #213
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Check for unused dependencies | |
on: | |
push: | |
paths: | |
- '.github/workflows/dependencies.yml' | |
- 'offchain/**' | |
jobs: | |
check-offchain-deps: | |
runs-on: ubuntu-latest | |
env: | |
CARGO_REGISTRIES_CARTESI_INDEX: https://github.com/cartesi/crates-index | |
defaults: | |
run: | |
working-directory: offchain | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install cargo-machete | |
run: cargo install cargo-machete | |
- name: Analyze dependencies | |
run: cargo machete . |