Skip to content

Commit

Permalink
Add simple workflow for Windows Installer Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy committed Jul 16, 2024
1 parent 27e231e commit 18c3735
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test-installer-action-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Test Windows Installer

on: pull_request

permissions:
contents: read

jobs:
Test-Windows-Installer:
runs-on:
- windows-latest

steps:

- name: Checkout Salt
uses: actions/checkout@v4

- name: Set Up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Install NSIS
run: .\pkg\windows\install_nsis.cmd -CICD
shell: cmd

- name: Build Test Installer
run: .\pkg\windows\nsis\tests\setup.cmd -CICD
shell: cmd

- name: Run Stress Test
run: .\pkg\windows\nsis\tests\test.cmd -CICD .\stress_tests
shell: cmd

- name: Run Config Tests
run: .\pkg\windows\nsis\tests\test.cmd -CICD .\config_tests
shell: cmd

0 comments on commit 18c3735

Please sign in to comment.