Skip to content

Add quiz dialog

Add quiz dialog #36

Workflow file for this run

name: BTA.QuizApp
on:
pull_request:
branches:
- main
jobs:
build_dotnet:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '9.x'
include-prerelease: true
- name: dotnet build
run: dotnet build --configuration Release
- name: dotnet test
run: dotnet test --verbosity normal