Files
Umbraco-CMS/.github/workflows/codeql-analysis.yml
2022-01-18 11:51:42 +00:00

35 lines
789 B
YAML

name: "Code scanning - action"
on:
push:
branches: ['*/dev','*/contrib']
pull_request:
# The branches below must be a subset of the branches above
branches: ['*/dev','*/contrib']
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
config-file: ./.github/config/codeql-config.yml
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build
run: dotnet build umbraco-netcore-only.sln # also runs npm build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1