Skip to content

README.md

README.md #7

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
clippy:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0 # Rust Version.
profile: minimal
override: true
components: clippy
- name: Analyze
run: cargo clippy --all-targets -- -D warnings