fix: latexise for product of a number and a numeric power base #840
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: 'Solution Build' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| Everything: | |
| runs-on: windows-latest # Window application cannot be run on other OS | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup .NET 7 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: '7.0.x' | |
| include-prerelease: true | |
| - name: Build AM | |
| run: dotnet build Sources/AngouriMath/AngouriMath/AngouriMath.csproj | |
| - name: Build FSharp | |
| run: dotnet build Sources/Wrappers/AngouriMath.FSharp/AngouriMath.FSharp.fsproj | |
| - name: Build Interactive | |
| run: dotnet build Sources/Wrappers/AngouriMath.Interactive/AngouriMath.Interactive.fsproj | |
| - name: Build Analyzers | |
| run: dotnet build Sources/Analyzers/Analyzers/Analyzers.csproj | |
| - name: Build Utils | |
| run: dotnet build Sources/Utils/Utils/Utils.csproj |