Update README.md #20
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # If preinstalled in windows-latest, this step can be skipped | |
| # - name: Setup .NET ${{ matrix.dotnet-version }} | |
| # uses: actions/setup-dotnet@v4 | |
| # with: | |
| # dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Build | |
| run: dotnet build --configuration Release | |
| - name: Unit tests | |
| run: dotnet test --configuration Release --no-build |