Introduce attributes to refine customizations #136
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '🔬 CodeQL: Semantic code analysis' | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
- '.github/workflows/codeql.yml' | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'src/**' | |
- '.github/workflows/codeql.yml' | |
schedule: | |
- cron: '20 23 * * 0' | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
Configuration: Release | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
timeout-minutes: 360 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'csharp' ] | |
steps: | |
- name: 📥 checkout | |
uses: actions/checkout@v3 | |
- name: 🎰 initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: 🏗️ build | |
run: dotnet build ./src/Objectivity.AutoFixture.XUnit2.AutoMock.sln | |
- name: 🔬 analyze with CodeQL | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: '/language:${{ matrix.language }}' |