Skip to content

Update dashboard/index.html. #31

Update dashboard/index.html.

Update dashboard/index.html. #31

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
- '*/*'
- '**'
- '!main'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build solution
run: dotnet build -c Debug
- name: Run tests
run: dotnet test -c Debug --no-build --no-restore