From 9e432efcd1922d7bad2e8866728a66cd503b5c39 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 16 May 2021 15:51:44 +0200 Subject: [PATCH] remove code check --- .github/workflows/check_code.yml | 37 -------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/check_code.yml diff --git a/.github/workflows/check_code.yml b/.github/workflows/check_code.yml deleted file mode 100644 index 227f19258..000000000 --- a/.github/workflows/check_code.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Code Check - -on: - push: - branches: [ dev ] - pull_request: - branches: [ dev ] - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - - strategy: - fail-fast: false - matrix: - # Override automatic language detection by changing the below list - # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] - language: ['cpp'] - # Learn more... - # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - - - run: | - make - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1