Skip to content

docs: design spec for azd ai connection direct commands #11125

docs: design spec for azd ai connection direct commands

docs: design spec for azd ai connection direct commands #11125

Workflow file for this run

name: cli-ci
on:
pull_request:
paths:
- "cli/**"
- "!cli/azd/extensions/**"
- ".github/workflows/cli-ci.yml"
branches: [main]
# If two events are triggered within a short time in the same PR, cancel the run of the oldest event
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: write
jobs:
azd-lint:
uses: ./.github/workflows/lint-go.yml
with:
working-directory: cli/azd
cspell-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "20"
- run: npm install -g cspell@8.13.1
- name: Spell check for go and docs
working-directory: cli/azd
run: cspell lint '**/*.go' '**/*.md' --exclude 'extensions/**' --config ./.vscode/cspell.yaml --no-progress
Copyright-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Copyright check
run: ./eng/scripts/copyright-check.sh ./cli/azd
bicep-lint:
uses: ./.github/workflows/lint-bicep.yml