FSharp.Data.Html suggested change to enable people to use the html parser without hiding representation without having to hack the code itself. #174
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: Build and Test PR | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.203 | |
- name: Restore .NET local tools | |
run: dotnet tool restore | |
- name: Restore packages | |
run: dotnet paket restore | |
- name: Build and test (Release) | |
env: | |
FAKE_DETAILED_ERRORS: true | |
run: dotnet fake build -t All | |
- name: Build (Debug) | |
run: dotnet build -c Debug -v n | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.203 | |
- name: Restore .NET local tools | |
run: dotnet tool restore | |
- name: Restore packages | |
run: dotnet paket restore | |
- name: Build and test | |
run: dotnet fake build -t RunTests | |
- name: Build (Debug) | |
run: dotnet build -c Debug -v n |