Skip to content

Remove source converted to notebook #165

Remove source converted to notebook

Remove source converted to notebook #165

Workflow file for this run

name: Build All Branches
on:
workflow_dispatch:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- id: prepare-java-build
name: Prepare Maven build
uses: sualeh/[email protected]
with:
checkout-branch: main
- id: build-java
name: Java build and run tests
run: |
# Java build and run tests
cd Java
mvn \
--no-transfer-progress \
--batch-mode \
compile
- id: prepare-dotnet-build
name: Prepare .NET build
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- id: build-dotnet
name: .NET build and run tests
run: |
# .NET build and run tests
cd C#
dotnet build
dotnet test --list-tests