-
Notifications
You must be signed in to change notification settings - Fork 511
74 lines (62 loc) · 1.69 KB
/
codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# http://go.microsoft.com/fwlink/?LinkId=248929
name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
paths-ignore:
- '*.md'
- LICENSE
- '.nuget/*'
- build/*.cmd
- build/*.json
- build/*.props
- build/*.ps1
- build/*.targets
- build/*.yml
schedule:
- cron: '31 2 * * 5'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: windows-latest
timeout-minutes: 360
permissions:
security-events: write
packages: read
strategy:
fail-fast: false
matrix:
language: [c-cpp, csharp]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- if: matrix.language == 'c-cpp'
name: 'Install Ninja'
run: choco install ninja
- uses: ilammy/msvc-dev-cmd@v1
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: manual
- if: matrix.language == 'c-cpp'
name: 'Configure CMake (C/C++)'
working-directory: ${{ github.workspace }}
run: cmake --preset=x64-Debug
- if: matrix.language == 'c-cpp'
name: 'Build (C/C++)'
working-directory: ${{ github.workspace }}
run: cmake --build out\build\x64-Debug
- if: matrix.language == 'csharp'
name: 'Build (C#)'
working-directory: ./MakeSpriteFont
run: msbuild MakeSpriteFont.csproj /p:Configuration=Debug /p:Platform=AnyCPU
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"