Skip to content

[task] Log entries created from user input #6

[task] Log entries created from user input

[task] Log entries created from user input #6

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [main]
pull_request:
paths:
- "**/*.go"
- ".github/workflows/codeql.yml"
- "go.mod"
- "go.sum"
branches: [main]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: go
source-root: cli/azd
- name: "Build application"
run: |
cd cli/azd
go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3