Co-authored-by: Niels Lyngsø <nsl@umbraco.com> Co-authored-by: Mads Rasmussen <madsr@hey.com> Co-authored-by: Paul Johnson <pmj@umbraco.com>
30 lines
668 B
YAML
30 lines
668 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: dotnet build
|
|
run: dotnet build umbraco-netcore-only.sln
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v1
|