[repo] bump: (deps): Bump the production group across 1 directory wit… #1195
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
# | |
# This workflow will build/test/lint the .NET SDK. | |
# | |
name: DOTNET Build/Test/Lint | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: ['**'] | |
paths: ['.github/workflows/dotnet-*.yml', 'dotnet/**'] | |
permissions: read-all | |
jobs: | |
build-test-lint: | |
name: Build/Test/Lint | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
dotnet-version: ['6.0', '7.0'] | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash | |
working-directory: dotnet/packages/Microsoft.TeamsAI/ | |
env: | |
SOLUTION_DIR: dotnet/packages/Microsoft.TeamsAI/ | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup .NET ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4.1.0 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Restore | |
run: dotnet restore Microsoft.Teams.AI.sln | |
- name: Build | |
run: dotnet build Microsoft.Teams.AI.sln --no-restore --configuration Release | |
- name: Test | |
run: dotnet test Microsoft.TeamsAI.Tests/Microsoft.Teams.AI.Tests.csproj --no-restore --verbosity normal --logger trx --results-directory ./TestResults --collect:"XPlat Code Coverage" --configuration Release | |
- name: Coverage | |
uses: danielpalme/ReportGenerator-GitHub-Action@810356ce07a94200154301fb73d878e327b2dd58 # 5.4.1 | |
with: | |
reports: ${{ env.SOLUTION_DIR }}TestResults/*/coverage.cobertura.xml | |
targetdir: ${{ env.SOLUTION_DIR }}TestResults/coverage | |
reporttypes: 'HtmlInline;lcov' | |
toolpath: ${{ env.SOLUTION_DIR }}report-generator-tool | |
- name: Upload Tests | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: testresults-dotnet-${{ matrix.dotnet-version }} | |
path: ${{ env.SOLUTION_DIR }}TestResults | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit |