Skip to content

Add windows ci test. #6

Add windows ci test.

Add windows ci test. #6

Workflow file for this run

name: Rust
on:
push:
branches: [ "ci" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os:
- windows-2019
- windows-2022
- windows-latest
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- run: vcpkg install openssl:x64-windows-static-md
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: debug with ssh tunnel
if: ${{ failure() }}
uses: wa5i/ssh-to-actions@main
with:
SSH_PASSWORD: ${{ secrets.SSH_PASSWORD }}
NPS_SERVER: ${{ secrets.NPS_SERVER }}
NPS_VKEY: ${{ secrets.NPS_VKEY }}