Skip to content

Fix LocalTimeFormValue to use consistent private field naming and sim… #69

Fix LocalTimeFormValue to use consistent private field naming and sim…

Fix LocalTimeFormValue to use consistent private field naming and sim… #69

Workflow file for this run

name: .NET Build and Test
on:
workflow_dispatch:
push:
paths:
- '**.csproj'
- '**.cs'
- '**.razor'
- '**.yaml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.x
8.x
cache: true
cache-dependency-path: '**/packages.lock.json'
- name: Restore dependencies
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal