Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0 #53
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+Test+Docs | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build Debug | |
run: dotnet build --no-restore | |
- name: Run Debug Tests (Release tests fail to discover) | |
run: dotnet test --no-build --verbosity normal | |
- name: Build Release | |
run: dotnet build --no-restore --configuration=Release | |
- name: Restore tools | |
run: dotnet tool restore | |
- name: Run fsdocs | |
run: dotnet fsdocs build --eval --strict --properties Configuration=Release | |
- name: Deploy docs | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./output | |
publish_branch: gh-pages | |
force_orphan: true | |