Compare commits

..

4 Commits

Author SHA1 Message Date
Gwen Lg
d98859d064 improve error management with thiserror use
- add thiserror dependency
- use distinct Error enum in lib and server
2024-06-14 11:59:41 +02:00
Gwen Lg
67236248be update dependencies in Cargo.toml
update: zip, reqwest and env_logger
2024-06-14 11:59:41 +02:00
Gwen Lg
87eb37cb75 fix fmt in Cargo.toml 2024-06-14 11:59:41 +02:00
2dd1e5907a Enable CI (#2)
Reviewed-on: pierre/GrammalecteClient#2
2024-06-14 06:43:14 +00:00

14
.drone.yml Normal file
View File

@ -0,0 +1,14 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo test --all-features