Skip to content

chore: update issue templates #9

chore: update issue templates

chore: update issue templates #9

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration release --verbosity minimal
- name: Test
run: dotnet test --no-build --configuration release --verbosity minimal