Merge pull request #53 from drewnoakes/copilot/fix-figgle-font-warnings #72
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: | |
| ununtu: | |
| runs-on: ubuntu-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore | |
| run: dotnet restore Figgle.slnx | |
| - name: Build solution (Release) | |
| run: dotnet build Figgle.slnx --configuration Release | |
| - name: Build solution (Debug) | |
| run: dotnet build Figgle.slnx --configuration Debug | |
| - name: Test Figgle.Tests (Release) | |
| run: dotnet test --verbosity normal --configuration Release --no-build --framework net9.0 tests/Figgle.Tests/Figgle.Tests.csproj | |
| - name: Test Figgle.Tests (Debug) | |
| run: dotnet test --verbosity normal --configuration Debug --no-build --framework net9.0 tests/Figgle.Tests/Figgle.Tests.csproj | |
| - name: Test Figgle.Generator.Tests (Release) | |
| run: dotnet test --verbosity normal --configuration Release --no-build --framework net9.0 tests/Figgle.Generator.Tests/Figgle.Generator.Tests.csproj | |
| - name: Test Figgle.Generator.Tests (Debug) | |
| run: dotnet test --verbosity normal --configuration Debug --no-build --framework net9.0 tests/Figgle.Generator.Tests/Figgle.Generator.Tests.csproj | |
| # - name: Publish NativeAOT | |
| # run: dotnet publish --verbosity normal --configuration Release --framework net9.0 src/Figgle/Figgle.csproj | |
| windows: | |
| runs-on: windows-latest | |
| env: | |
| DOTNET_NOLOGO: true | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore | |
| run: dotnet restore Figgle.slnx | |
| - name: Build solution (Release) | |
| run: dotnet build Figgle.slnx --configuration Release | |
| - name: Build solution (Debug) | |
| run: dotnet build Figgle.slnx --configuration Debug | |
| - name: Test Figgle.Tests (Release) | |
| run: dotnet test --verbosity normal --configuration Release --no-build --framework net9.0 tests/Figgle.Tests/Figgle.Tests.csproj | |
| - name: Test Figgle.Tests (Debug) | |
| run: dotnet test --verbosity normal --configuration Debug --no-build --framework net9.0 tests/Figgle.Tests/Figgle.Tests.csproj | |
| - name: Test Figgle.Generator.Tests (Release) | |
| run: dotnet test --verbosity normal --configuration Release --no-build --framework net9.0 tests/Figgle.Generator.Tests/Figgle.Generator.Tests.csproj | |
| - name: Test Figgle.Generator.Tests (Debug) | |
| run: dotnet test --verbosity normal --configuration Debug --no-build --framework net9.0 tests/Figgle.Generator.Tests/Figgle.Generator.Tests.csproj | |
| # - name: Publish NativeAOT | |
| # run: dotnet publish --verbosity normal --configuration Release --framework net9.0 src/Figgle/Figgle.csproj |