Run tests on PR #7
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: Run tests on PR | |
| on: [push] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| dotnet-version: ["8.0.x"] | |
| steps: | |
| - name: Checkout master | |
| uses: actions/checkout@main | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@main | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Setup caching Nuget packages | |
| uses: actions/cache@main | |
| with: | |
| path: ~/.nuget/packages | |
| # Look to see if there is a cache hit for the corresponding requirements file | |
| key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} | |
| restore-keys: | | |
| ${{ runner.os }}-nuget | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --no-restore | |
| - name: Test with the dotnet CLI | |
| run: dotnet test --no-build --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}" | |
| - name: Upload dotnet test results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dotnet-results-${{ matrix.dotnet-version }} | |
| path: TestResults-${{ matrix.dotnet-version }} | |
| # Use always() to always run this step to publish test results when there are test failures | |
| if: ${{ always() }} |