Files
termix/.woodpecker/code_tests.yaml
Nikolai Rodionov a9efa652ef
All checks were successful
ci/woodpecker/push/code_tests Pipeline was successful
ci/woodpecker/push/pre_commit_test Pipeline was successful
Add cargo fmt to the pipeline
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-11-23 18:58:22 +01:00

19 lines
374 B
YAML

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