Check / stable / fmt (push) Successful in 9m56s
Check / beta / clippy (push) Failing after 40s
Check / stable / clippy (push) Failing after 39s
Check / nightly / doc (push) Failing after 36s
Check / 1.89.0 / check (push) Failing after 39s
Test Suite / ubuntu / beta (push) Failing after 39s
Test Suite / ubuntu / stable (push) Failing after 38s
Test Suite / ubuntu / stable / coverage (push) Failing after 1m4s
Test Suite / macos-latest / stable (push) Has been cancelled
Test Suite / windows-latest / stable (push) Has been cancelled
36 lines
687 B
Makefile
36 lines
687 B
Makefile
# List all recipes
|
|
default:
|
|
@just --list
|
|
|
|
# Format all files
|
|
[group: 'style']
|
|
fmt:
|
|
@cargo fmt --all
|
|
|
|
alias clippy := lint
|
|
# Run Clippy to inspect all files
|
|
[group: 'style']
|
|
lint:
|
|
@cargo clippy --all
|
|
|
|
alias clippy-fix := lint-fix
|
|
# Automatically fix clippy issues where possible
|
|
[group: 'style']
|
|
lint-fix:
|
|
@cargo fix
|
|
|
|
# Run all tests
|
|
[group: 'test']
|
|
test:
|
|
@cargo test --all
|
|
|
|
# Build and run the binary for the current system
|
|
run:
|
|
@cargo run
|
|
|
|
# Build the project for the current system architecture
|
|
[group: 'build']
|
|
[arg('build_type', pattern="debug|release")]
|
|
build build_type='debug':
|
|
@cargo build {{ if build_type == "release" { "--release" } else { "" } }}
|