Skip to content

Fix switched Add/Mul class names in C# arithmetic call files #36

Fix switched Add/Mul class names in C# arithmetic call files

Fix switched Add/Mul class names in C# arithmetic call files #36

Workflow file for this run

name: .NET Pull Request
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.x
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: TiaCodegen-ts/package-lock.json
- name: Install TypeScript dependencies
run: npm ci
working-directory: TiaCodegen-ts
- name: Build TypeScript
run: npm run build
working-directory: TiaCodegen-ts
- name: Test TypeScript
run: npm test
working-directory: TiaCodegen-ts
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal