-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (34 loc) · 882 Bytes
/
Copy pathcodeql.yml
File metadata and controls
38 lines (34 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright Nixort <https://github.com/Nixort> 2026.
#
# License: GNU General Public License v3.0 only.
# You can find the license file in the project root.
#
# Causal Frontier Ratchet (CFR).
name: CFR CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "11 2 * * 1"
permissions:
security-events: write
contents: read
jobs:
analyze:
name: CodeQL Rust analysis
runs-on: ubuntu-24.04
timeout-minutes: 25
steps:
# actions/checkout v4.1.7, pinned by immutable commit SHA.
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: rust
build-mode: none
- name: Analyze
uses: github/codeql-action/analyze@v4
with:
category: "/language:rust"