Skip to content

Commit

Permalink
trigger code scanning manually
Browse files Browse the repository at this point in the history
  • Loading branch information
pionere committed Aug 18, 2024
1 parent fd648ce commit e909d4a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/code-ql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Weekly Code Scanning

on: [push, pull_request]
#on:
# schedule:
# - cron: "0 0 * * 0" # Every Sunday at midnight

jobs:
code-scanning:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run code scanning
uses: github/codeql-action/analyze@v1
with:
languages: c-cpp, java-kotlin

0 comments on commit e909d4a

Please sign in to comment.