Fix more <para> cases #290
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: .NET | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore dependencies of PortToTripleSlash | |
run: dotnet restore src/PortToTripleSlash/PortToTripleSlash.sln | |
- name: Build PortToTripleSlash | |
run: dotnet build --no-restore src/PortToTripleSlash/PortToTripleSlash.sln | |
# Re-enable when the msbuild failure is fixed, to prevent skipping the subsequent tasks | |
- name: Test PortToTripleSlash | |
run: dotnet test --no-build --verbosity normal src/PortToTripleSlash/PortToTripleSlash.sln | |
- name: Restore dependencies of PortToDocs | |
run: dotnet restore src/PortToDocs/PortToDocs.sln | |
- name: Build PortToDocs | |
run: dotnet build --no-restore src/PortToDocs/PortToDocs.sln | |
- name: Test PortToDocs | |
run: dotnet test --no-build --verbosity normal src/PortToDocs/PortToDocs.sln |