ci: add test pipeline and bump version to 0.2.1
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing

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 daad6a84f3
commit 2bf1dc3ff4
2 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
kind: pipeline kind: pipeline
type: docker 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 name: release
trigger: trigger:

View File

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