Skip to content

Remove custom handling of CimException. #31

Remove custom handling of CimException.

Remove custom handling of CimException. #31

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
arch: [win-x64]
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Build
run: dotnet build Installer --arch ${{ matrix.arch }} --configuration Release
- name: Test
run: dotnet test AOVpnManager.Tests
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: AOVpnManager-${{ matrix.arch }}
path: .\out\Release