Bump the nuget group with 5 updates #14
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: Test | |
| on: [pull_request, workflow_dispatch] | |
| env: | |
| DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1 | |
| FORCE_COLOR: 3 | |
| TERM: xterm | |
| jobs: | |
| # build-warnings: | |
| # name: Build warnings check | |
| # runs-on: ubuntu-latest | |
| # timeout-minutes: 30 | |
| # steps: | |
| # - uses: actions/[email protected] | |
| # - name: Build | |
| # run: dotnet build /WarnAsError | |
| test: | |
| name: Tests for framework ${{ matrix.framework }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| framework: ['net8.0', 'net9.0'] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Setup .NET | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| - name: Smoke test | |
| run: | | |
| dotnet run --configuration Release --framework ${{ matrix.framework }} --project src/DotNetOutdated test-projects/development-dependencies | |
| - name: Tests | |
| run: dotnet test --configuration Release --framework ${{ matrix.framework }} |