Skip to content

fix(display): keep ASCII on primary font face #72

fix(display): keep ASCII on primary font face

fix(display): keep ASCII on primary font face #72

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "23 4 * * 1"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: codeql-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-22.04
timeout-minutes: 60
env:
TMPDIR: ${{ github.workspace }}/tmp
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
# The Actions extractor also analyzes Bash embedded in workflow `run:`
# steps. CodeQL does not provide a standalone Bash language extractor.
language:
- rust
- actions
- python
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Prepare workspace temp directory
run: mkdir -p "$TMPDIR"
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: none
- name: Analyze
uses: github/codeql-action/analyze@v4
with:
category: /language:${{ matrix.language }}