Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hanabi1224 committed Sep 12, 2023
1 parent 68ac9f4 commit 16a5143
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 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
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
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ audit:
cargo audit

udeps:
cargo udeps
cargo +nightly udeps

lint: clean lint-clippy
cargo fmt --all --check
Expand Down
2 changes: 1 addition & 1 deletion forest
Submodule forest updated 1 files
+27 −12 Cargo.toml

0 comments on commit 16a5143

Please sign in to comment.