Bump actions/checkout from 4.2.2 to 6.0.0 #152
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
| # For details of what checks are run for PRs please refer below | |
| name: .NET CI | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| # Fail if there are build warnings | |
| build-warnings: | |
| name: Build warnings check | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6.0.0 | |
| - name: Build | |
| run: dotnet build /WarnAsError | |
| test: | |
| name: Tests for .NET ${{ matrix.framework }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| framework: ['8.0'] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6.0.0 | |
| - name: Tests | |
| run: dotnet test --framework netcoreapp${{ matrix.framework }} |