Merge pull request #238 from JustAman62/revert-remove-team-radio #567
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: CI | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore dependencies | |
| run: | | |
| dotnet restore | |
| dotnet tool restore | |
| - name: Build | |
| run: dotnet build --no-restore -c Debug | |
| - name: Lint | |
| run: dotnet tool run csharpier check . | |
| - name: Test | |
| run: dotnet test --no-build --verbosity normal -c Debug |