Albatross/Taskfile.yaml
Joey Hines 4135098c3d
All checks were successful
Build and Test Formaty / build (push) Successful in 2m8s
Build and Release Formaty / build (release) Successful in 2m7s
Add gitea CI and task
2026-04-12 11:46:23 -06:00

38 lines
746 B
YAML

# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: '3'
tasks:
version:
desc: Print out Rust version info
cmds:
- cargo --version
- rustc --version
- cargo clippy --version
build:
desc: Debug build
cmds:
- cargo build --timings --tests --bins
test:
desc: Test code
deps: [build]
cmds:
- cargo test --locked
build:release:
desc: Release build
cmds:
- cargo build --release --locked --timings
fmt:
desc: Format Rust code
cmds:
- cargo fmt
check:
desc: Lint code with Clippy
cmds:
- cargo check
- cargo fmt --check
- cargo clippy
clean:
desc: Purge Rust build cache
cmds:
- cargo clean