Bump Microsoft.NET.Test.Sdk from 18.0.1 to 18.3.0 #34
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: Build and Test | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| jobs: | |
| build-and-publish: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| defaults: | |
| run: | |
| working-directory: ./src | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Build Solution | |
| run: dotnet build -c Release | |
| - name: Run Unit Tests | |
| run: dotnet test -c Release --no-build |