/
michael60
/
M2WL
Обзор
Документация
Войти
/
michael60
/
M2WL
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
.github/workflows/codeql-analysis.yml
39 строк
843 B
DivinMA
ci: fix workflows — actionlint compatibility and secret check (#29)
03 фев 2026, 22:29
Не верифицирован
03 фев 2026, 22:29
37b802a
Код
Авторство
О чём код?
--- name: "CodeQL" on: push: branches: [main, staging] pull_request: branches: [main, staging] jobs: analyze: name: Analyze runs-on: ubuntu-latest permissions: actions: read security-events: write steps: - name: Checkout repository uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v4 with: languages: csharp - name: Setup .NET uses: actions/setup-dotnet@v5 with: dotnet-version: '10.0.x' cache: false - name: Restore and build run: | dotnet restore --force-evaluate dotnet build src/MoneyToWords/MoneyToWords.fsproj --configuration Release --no-restore - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v4