Skip to content

add deep dive StepWiseEngine document #18

add deep dive StepWiseEngine document

add deep dive StepWiseEngine document #18

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: dotnet-ci
on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: |
dotnet restore -bl
- name: Build
run: |
echo "Build"
dotnet build --no-restore --configuration Debug -bl /p:SignAssembly=true
- name: Unit Test
run: dotnet test --no-build -bl --configuration Debug -m:3 -v d