AmagnoVirtualPrinter/.github/workflows/test.yml
2023-05-31 08:57:12 +02:00

36 lines
825 B
YAML

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
jobs:
build:
runs-on: windows-latest
env:
solution: AmagnoVirtualPrinter.sln
configuration: Release
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Perform a Pester test from the command-line
shell: pwsh
run: Test-Path $Env:GITHUB_WORKSPACE\test1.ps1 | Should -Be $true
- name: Create msi from PowerShell Script
run: |
"$Env:GITHUB_WORKSPACE\test.ps1"
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: installer
path: ./test.txt
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: files
path: files/**/*