chore: add launch profile settings for debugging purposes #81
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 | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: Git Checkout | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@v3 | |
| name: .NET Setup | |
| with: | |
| dotnet-version: 7.0.x | |
| - name: Restoring | |
| run: dotnet restore --verbosity normal | |
| - name: Building | |
| run: dotnet build --configuration Release --no-restore --verbosity normal | |
| - name: Testing | |
| run: dotnet test --configuration Release --no-restore --no-build --verbosity normal |