Skip to content

update deps

update deps #48

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
ALLOWED_CLIPPY_WARNINGS: 5
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy -- -D warnings
- name: Run Clippy with allowed warnings
run: |
warning_count=$(cargo clippy -- --color never 2>&1 | grep 'warning:' | wc -l)
if [ $warning_count -gt $ALLOWED_CLIPPY_WARNINGS ]; then
echo "Too many Clippy warnings: $warning_count (allowed: $ALLOWED_CLIPPY_WARNINGS)"
exit 1
else
echo "Clippy warnings are within the allowed limit: $warning_count (allowed: $ALLOWED_CLIPPY_WARNINGS)"
fi