Delete function UnescapeConnectionName() #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'www/**' | |
pull_request: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'www/**' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
arch: [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\Installer\en-US\AOVpnManager.msi | |
policy_templates: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Upload policy templates to artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Policy Templates | |
path: .\PolicyTemplates |