Skip to content

fix: Unexpected behavior when pressing Control or Shift while draggin… #1

fix: Unexpected behavior when pressing Control or Shift while draggin…

fix: Unexpected behavior when pressing Control or Shift while draggin… #1

Workflow file for this run

# Copyright 2015 - 2024, GIBIS-Unifesp and the WiRedPanda contributors
# SPDX-License-Identifier: GPL-3.0-or-later
name: "CodeQL"
on:
push:
branches: [ "master" ]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Install Qt5
uses: jurplel/install-qt-action@v4
with:
version: 5.15.2
cache: true
- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ matrix.os }}
- name: Build
run: |
sudo apt install libgstreamer-gl1.0-0
mkdir build
cd build
qmake ../WPanda.pro
make -j2
- name: Test
run: |
cd build/test
./WPanda-test -platform offscreen
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3