updating to latest TorchSharp #855
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 (Debug) | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Install tool dependencies | |
run: dotnet tool restore | |
- name: Build | |
run: dotnet build --configuration Debug --no-restore --verbosity normal | |
- name: Test | |
run: dotnet test --configuration Debug --no-restore --verbosity normal | |
- name: Run fsdocs | |
run: dotnet fsdocs build --eval --strict |