Skip to content

Add Windows CI flow. #1

Add Windows CI flow.

Add Windows CI flow. #1

Workflow file for this run

name: Test on Windows
on: [push, pull_request ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Install .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Fetch sources
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run tests
run: |
dotnet test test/Tmds.Ssh.Tests