1 Commits
Author SHA1 Message Date
cinco 9150f93f6a ci: add test pipeline and bump version to 0.2.1
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.
2026-02-28 20:23:09 -03:00
2 changed files with 19 additions and 1 deletions
+18
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:
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "tmuxido"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
[dev-dependencies]