Skip to content

Configure permissions. #18

Configure permissions.

Configure permissions. #18

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 --no-build --verbosity normal
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: AOVpnManager-${{ matrix.arch }}
path: .\Installer\bin\Release\en-US