Skip to content

Commit

Permalink
Add GitHub action to test Pull Requests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheLav committed Mar 11, 2023
1 parent 961c0d5 commit bd6e2a9
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
workflow_dispatch:
pull_request:
paths-ignore:
- '**.md'
- 'imgs\*'

jobs:
test:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.workflow_run.head_branch }}

- name: Install the Windows SDK 22621
uses: ChristopheLav/windows-sdk-install@v1
with:
version-sdk: 22621
features: "OptionId.UWPCPP, OptionId.DesktopCPPx64, OptionId.DesktopCPPx86, OptionId.DesktopCPParm64, OptionId.DesktopCPParm"

- name: Run the WACK of the test project
uses: ./

0 comments on commit bd6e2a9

Please sign in to comment.