Skip to content

Upgrade ANTLR to 4.13.1 #837

Upgrade ANTLR to 4.13.1

Upgrade ANTLR to 4.13.1 #837

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