notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 22e4b727290c7b881707f1d33e0f8bea1051f013
parent 73f54d1c4f78319abeb7363d01ab5c7b953800b9
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 19 Apr 2024 17:37:41 -0700

check: remove duplicate and disable wasm checks

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcheck | 4++--
Dcheck.sh | 11-----------
2 files changed, 2 insertions(+), 13 deletions(-)

diff --git a/check b/check @@ -3,9 +3,9 @@ set -eux cargo check --workspace --all-targets -cargo check --workspace --all-features --lib --target wasm32-unknown-unknown +#cargo check --workspace --all-features --lib --target wasm32-unknown-unknown cargo fmt --all -- --check cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all cargo test --workspace --all-targets --all-features cargo test --workspace --doc -trunk build +#trunk build diff --git a/check.sh b/check.sh @@ -1,11 +0,0 @@ -#!/usr/bin/env bash -# This scripts runs various CI-like checks in a convenient way. -set -eux - -cargo check --workspace --all-targets -cargo check --workspace --all-features --lib --target wasm32-unknown-unknown -cargo fmt --all -- --check -cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all -cargo test --workspace --all-targets --all-features -cargo test --workspace --doc -trunk build