Feature to rendering Bold/Italic text for a regular font #15
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,pull_request] | |
| jobs: | |
| BuildAndPack: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Build | |
| run: dotnet build FontStashSharp.sln --configuration Release | |
| - name: Test | |
| run: dotnet test FontStashSharp.sln | |
| - name: Pack | |
| run: dotnet pack src/FontStashSharp/FontStashSharp.FNA.NET.csproj | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }} Artifacts | |
| path: | | |
| src/FontStashSharp/bin/Release/*.nupkg |