docs: finish up docstring documenting the public api surface for serv… #5
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: Sample Build | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
paths: | |
- Threads.Lib/** | |
- Sample/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- Threads.Lib/** | |
- Sample/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build dotnet 8.0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- run: dotnet restore Sample/Sample.fsproj | |
- run: dotnet build Sample/Sample.fsproj -f net8.0 --configuration Release --no-restore |