Skip to content

basic functionality of replay log working #450

basic functionality of replay log working

basic functionality of replay log working #450

name: CodeQL Analysis
on:
push:
branches: [ main ]
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
analyze:
name: CodeQL Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout repository
id: checkout_repo
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Initialize CodeQL
id: init_codeql
uses: github/codeql-action/init@v2
with:
queries: security-and-quality
- name: Build projects
id: build_projects
shell: pwsh
run: |
$projectsArray = @(
'.\src\kibali\Kibali.csproj',
'.\src\kibaliTool\KibaliTool.csproj',
'.\test\kibaliTests\KibaliTests.csproj'
)
$projectsArray | ForEach-Object {
dotnet build $PSItem -c Release
}
- name: Perform CodeQL Analysis
id: analyze_codeql
uses: github/codeql-action/analyze@v2
# Built with ❤ by [Pipeline Foundation](https://pipeline.foundation)