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]