Merge pull request #121 from vladon/git-action-for-build-n-test-every-pr

Add GitHub Actions workflow for build and test on every PR
This commit is contained in:
Alexey
2026-02-17 21:03:52 +03:00
committed by GitHub

View File

@@ -42,5 +42,13 @@ jobs:
- name: Build Release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
# clippy dont fail on warnings because of active development of telemt
# and many warnings
- name: Run clippy
run: cargo clippy -- --cap-lints warn
- name: Check for unused dependencies
run: cargo udeps || true