-
Notifications
You must be signed in to change notification settings - Fork 21
44 lines (34 loc) · 805 Bytes
/
Copy pathwindows.yml
File metadata and controls
44 lines (34 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: windows
on:
workflow_dispatch:
push:
paths:
- '.github/workflows/windows.yml'
- 'tests/**'
- '**/*.lua'
pull_request:
paths:
- '.github/workflows/windows.yml'
- 'tests/**'
- '**/*.lua'
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: mymindstorm/setup-emsdk@v16
- name: install premake5
uses: Jarod42/install-premake5@v7
- name: install ninja
uses: seanmiddleditch/gha-setup-ninja@v6
- name: Versions
run: |
python --version
premake5 --version
ninja --version
- name: Add cl.exe to PATH
uses: ilammy/msvc-dev-cmd@v1
- name: test projects
run: cd tests && python run_tests.py
shell: bash