clippy fix

This commit is contained in:
2024-01-15 21:50:50 -05:00
parent 3992529a71
commit e2446514db
116 changed files with 378 additions and 409 deletions
+26
View File
@@ -0,0 +1,26 @@
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt install libgtk-3-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy --all-targets --all-features