Skip to content

fix typo

fix typo #35

Workflow file for this run

name: Windows
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: "Setup dotnet"
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x.x
- name: "Build"
run: |
cd src/SimpleW
dotnet restore
dotnet build --configuration Release
dotnet test