Skip to content

Ensure runic install on linter workflow (#101) #24

Ensure runic install on linter workflow (#101)

Ensure runic install on linter workflow (#101) #24

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
tags: ["*"]
pull_request:
schedule:
- cron: "31 4 * * 1"
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
analyze:
name: Analyze (actions)
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Clone
uses: actions/checkout@v7
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
# CodeQL does not support Julia; only the Actions workflows are analyzable.
languages: actions
config-file: ./.github/codeql/codeql-config.yml
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:actions"