From 9150f93f6a521ab89586470e990566c0276cfd78 Mon Sep 17 00:00:00 2001 From: cinco euzebio Date: Sat, 28 Feb 2026 20:23:09 -0300 Subject: [PATCH] ci: add test pipeline and bump version to 0.2.1 Adds a Drone CI pipeline that runs on push and pull_request events, executing cargo fmt --check, cargo clippy, and cargo test in sequence. --- .drone.yml | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 4985430..e77ed94 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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: diff --git a/Cargo.toml b/Cargo.toml index 07c91d6..8712262 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tmuxido" -version = "0.2.0" +version = "0.2.1" edition = "2024" [dev-dependencies]