Skip to content

README.md - smaller demo images #2115

README.md - smaller demo images

README.md - smaller demo images #2115

Workflow file for this run

name: CI-Engine
on:
push:
branches: [ engine ]
pull_request:
branches: [ engine ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.101
- name: Restore dependencies
working-directory: ./Engine
run: dotnet restore
- name: Build
working-directory: ./Engine
run: dotnet build --no-restore
- name: Test
working-directory: ./Engine
run: dotnet test --no-build --verbosity normal