trello-to-deck/justfile
Paul Campbell 3c57554475
Some checks failed
Test / build (map[name:stable]) (push) Successful in 1m9s
Test / build (map[name:nightly]) (push) Successful in 1m28s
Release Please / Release-plz (push) Failing after 13s
build: initial ci setup
2024-12-12 07:55:23 +00:00

22 lines
462 B
Makefile

build:
#!/usr/bin/env bash
set -e
export RUSTFLAGS="-Cdebuginfo=2 -Cstrip=none --cfg=tarpaulin -Cinstrument-coverage -Clink-dead-code"
cargo fmt
cargo fmt --check
cargo clippy
# cargo build
cargo tarpaulin --skip-clean --out Html
# cargo test
# cargo doc
# cargo test --example get
build-mutations: build mutations
mutations:
cargo mutants --jobs 4 --baseline skip
# doc-test:
# cargo doc
# cargo test
# cargo test --example get