feat: add v0.1.2 branding and browser support #11
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: Build and test | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: build-test-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dotnet: | |
| name: Restore, format, build, and test | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v7 | |
| - name: Set up .NET 10 | |
| uses: actions/setup-dotnet@v6 | |
| with: | |
| dotnet-version: 10.0.301 | |
| - name: Restore solution and tools | |
| run: | | |
| dotnet restore BlokeBot.slnx | |
| dotnet tool restore | |
| - name: Check CSharpier formatting | |
| run: dotnet csharpier check . | |
| - name: Build with warnings as errors | |
| run: dotnet build BlokeBot.slnx --no-restore -warnaserror | |
| - name: Run the complete Microsoft Testing Platform suite | |
| run: dotnet test BlokeBot.slnx --no-build |