Bump Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0 #300
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
markdownlint-cli: | |
name: Lint markdown | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Run markdownlint-cli | |
uses: nosborn/[email protected] | |
with: | |
files: . | |
config_file: ".markdownlint.yaml" | |
test: | |
needs: [markdownlint-cli] | |
runs-on: ubuntu-latest | |
name: .NET ${{ matrix.dotnet-version }} | |
strategy: | |
matrix: | |
dotnet-version: | |
- '6.0.x' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Display dotnet version | |
run: dotnet --version | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal |