Files
termix/.woodpecker/code_tests.yaml
Nikolai Rodionov 9f2ebcba6d
All checks were successful
ci/woodpecker/push/code_tests Pipeline was successful
ci/woodpecker/push/pre_commit_test Pipeline was successful
WIP: Add a pre-commit hook and a checker to the ci
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-11-23 18:06:51 +01:00

14 lines
246 B
YAML

when:
event:
- push
steps:
- name: Clippy linter
image: rust:1.91.1-bullseye
commands:
- rustup component add clippy
- cargo clippy
- name: Unit tests
image: rust:1.91.1-bullseye
commands:
- cargo test