Skip to content

CodeQL

CodeQL #28

Workflow file for this run

name: CodeQL
on:
push:
pull_request:
schedule:
- cron: "0 4 * * 1"
jobs:
analyze:
name: Analyze Rust
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: rust
- uses: dtolnay/rust-toolchain@stable
- name: Build workspace
run: cargo build --workspace --all-targets
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3