Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): upgrade dependencies #164

Merged
merged 6 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,23 @@ jobs:
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Test forest
run: make -C forest test
run: |
cd forest
make test
hanabi1224 marked this conversation as resolved.
Show resolved Hide resolved
env:
CC: "sccache clang"
CXX: "sccache clang++"
- name: Install forest
run: make -C forest install
run: |
cd forest
make install
env:
CC: "sccache clang"
CXX: "sccache clang++"
- name: Calibnet health check
run: ./forest/scripts/tests/calibnet_other_check.sh
run: |
cd forest
./scripts/tests/calibnet_other_check.sh
hanabi1224 marked this conversation as resolved.
Show resolved Hide resolved

lint-all:
name: All lint checks (lint audit spellcheck udeps)
Expand All @@ -102,6 +108,7 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y libclang-dev # required dep for cargo-spellcheck
- uses: hanabi1224/[email protected]
- run: rustup toolchain install nightly
- name: Install Lint tools
run: make install-lint-tools
env:
Expand Down Expand Up @@ -153,4 +160,4 @@ jobs:
run: |
gem install toml-rb --no-document
ruby scripts/find_duplicate_deps.rb && \
ruby scripts/find_unused_deps.rb --ignore serde --ignore num --ignore num-bigint --ignore num-traits
ruby scripts/find_unused_deps.rb --ignore serde --ignore num --ignore num-bigint --ignore num-traits --ignore fvm_ipld_bitfield
Loading
Loading