Skip to content

docs: updated documets (#23) #36

docs: updated documets (#23)

docs: updated documets (#23) #36

Workflow file for this run

name: AuroCI.CLI Console CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build App
run: dotnet build --no-restore -c Release
- name: Run Tests
run: dotnet test -c Release --no-build --verbosity normal