ci: add test pipeline and bump version to 0.2.1
Some checks failed
continuous-integration/drone/tag Build is failing

Adds a Drone CI pipeline that runs on push and pull_request events,
executing cargo fmt --check, cargo clippy, and cargo test in sequence.
This commit is contained in:
Cinco Euzebio 2026-02-28 20:23:09 -03:00
parent a076cf2543
commit 9150f93f6a
2 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
kind: pipeline
type: docker
name: ci
trigger:
event:
- push
- pull_request
steps:
- name: test
image: rust:latest
commands:
- cargo fmt --check
- cargo clippy -- -D warnings
- cargo test
---
kind: pipeline
type: docker
name: release
trigger:

View File

@ -1,6 +1,6 @@
[package]
name = "tmuxido"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
[dev-dependencies]