Skip to content

Commit

Permalink
Of course iroh-cli is a special case
Browse files Browse the repository at this point in the history
  • Loading branch information
flub committed Mar 25, 2024
1 parent 9f74b31 commit 547abe2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ jobs:
for i in ${CRATES_LIST//,/ }
do
echo "Checking $i $FEATURES"
cargo check -p $i $FEATURES --lib --bins
if [ $i = "iroh-cli" ]; then
targets = "--bins"
else
targets = "--lib --bins"
fi
cargo check -p $i $FEATURES $targets
done
env:
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}}
Expand Down

0 comments on commit 547abe2

Please sign in to comment.