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
commit 73b40d386a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

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