Skip to content

fix - Fixed shutdown splash not appearing from login #513

fix - Fixed shutdown splash not appearing from login

fix - Fixed shutdown splash not appearing from login #513

Workflow file for this run

name: "CodeQL Analysis"
on:
push:
branches: [ "main", "servicing" ]
pull_request:
branches: [ "main", "servicing" ]
schedule:
- cron: '32 13 * * 2'
jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Build
run: |
chmod +x ./tools/build.sh
cd tools && ./build.sh && cd -
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"