Skip to content

Commit

Permalink
Merge pull request #2 from cosminmart-com/1-ci-add-makefile-for-rgb-l…
Browse files Browse the repository at this point in the history
…ightning-node

chore: Makefile
  • Loading branch information
bitlightlabs-dev authored Nov 14, 2023
2 parents 2b23f4a + 3b6d928 commit 286aab8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.PHONY: all check clean

all: build

check: fmt test clippy

test:
cargo test --all-features

fmt:
cargo fmt --all -- --check

clippy:
cargo clippy --workspace --all-targets --tests -- -D warnings

clean:
cargo clean

build:
cargo build --release

0 comments on commit 286aab8

Please sign in to comment.