Fix GH-403 and few refactoring/miscellaneous changes #63
This file contains hidden or 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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
jobs: | |
job: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
artifact-name: Linux | |
#- os: macos-11 | |
# artifact-name: Darwin | |
#- os: windows-2022 | |
# artifact-name: Win64 | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: Install .NET 9.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Display dotnet info | |
run: dotnet --list-sdks | |
- name: Run tests | |
run: dotnet test src/ReverseMarkdown.Test/ReverseMarkdown.Test.csproj --framework net9.0 | |