stalled tunnel detection changes #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeQL Analysis for C# | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
analyze: | |
name: Analyze C# code with CodeQL | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: 'csharp' | |
- name: Perform CodeQL analysis on C# | |
uses: github/codeql-action/analyze@v1 | |
with: | |
languages: 'csharp' |