Fix Unity TLS support #1
This file contains hidden or 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" | |
| on: | |
| push: | |
| branches: [ master, develop ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '23 12 * * 1' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: windows-2025 | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'csharp' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v2 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Setup MSBuild | |
| uses: microsoft/[email protected] | |
| - name: Restore dependencies | |
| run: nuget restore pusher-dotnet-client.sln | |
| - name: Build | |
| run: msbuild /p:deterministic=true /p:msbuildArchitecture=x64 /p:configuration=Release pusher-dotnet-client.sln | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v2 |