Skip to content

Restore CI and release workflows #23

Restore CI and release workflows

Restore CI and release workflows #23

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
paths-ignore:
- "**/*.md"
- ".agents/**"
- ".github/dependabot.yml"
- "assets/**"
- "automations/**"
- "openwiki/**"
pull_request:
branches:
- main
paths-ignore:
- "**/*.md"
- ".agents/**"
- ".github/dependabot.yml"
- "assets/**"
- "automations/**"
- "openwiki/**"
schedule:
- cron: "24 6 * * 1"
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: rust
build-mode: none
- language: javascript-typescript
build-mode: none
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"