Skip to content

Bump Markdig from 0.38.0 to 0.39.1 #247

Bump Markdig from 0.38.0 to 0.39.1

Bump Markdig from 0.38.0 to 0.39.1 #247

name: Build and test solution
env:
DOTNET_VERSION: '9.0.x'
on:
pull_request:
branches: [ "main", "dev" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal