Skip to content

[WIP] Wrapped Text Support #358

[WIP] Wrapped Text Support

[WIP] Wrapped Text Support #358

Workflow file for this run

name: CodeQL
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches: master
paths:
- 'src/**/**'
- 'support/**/*.cpp'
- '**/codeql.yml'
pull_request:
paths:
- 'src/**/**'
- '**/codeql.yml'
jobs:
codeql:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Install dependencies
run: |
sudo apt update
sudo apt upgrade -y
sudo apt install -y \
gettext \
liblua5.1-0-dev \
libphysfs-dev \
libsdl2-dev \
libsdl2-mixer-dev \
libsdl2-ttf-dev \
meson \
ninja-build \
python3 \
python3-setuptools
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'cpp'
- name: Meson build
run: |
meson setup _build
ninja -v -C _build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3