Skip to content

Add automatic database-first SQL generation with two-project pattern #214

Add automatic database-first SQL generation with two-project pattern

Add automatic database-first SQL generation with two-project pattern #214

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 12 * * 0'
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
10.0.x
cache: true
cache-dependency-path: |
**/packages.lock.json
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
- name: Restore
run: dotnet restore JD.Efcpt.Build.sln --use-lock-file
- name: Build
run: dotnet build JD.Efcpt.Build.sln --configuration Release --no-restore
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3