Bump Sendspin.SDK from 9.3.0 to 9.3.2 #365
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: Lint and Build | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| build-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Set up .NET 8.0 | |
| uses: actions/setup-dotnet@v6 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Restore dependencies | |
| run: dotnet restore src/MultiRoomAudio/MultiRoomAudio.csproj | |
| - name: Build | |
| run: dotnet build src/MultiRoomAudio/MultiRoomAudio.csproj --no-restore -c Release | |
| - name: Check formatting | |
| run: dotnet format src/MultiRoomAudio/MultiRoomAudio.csproj --verify-no-changes --verbosity diagnostic | |
| - name: Test | |
| run: dotnet test tests/MultiRoomAudio.Tests/MultiRoomAudio.Tests.csproj -c Release |