Add GH Windows build
This commit is contained in:
25
.github/workflows/windows.yml
vendored
Normal file
25
.github/workflows/windows.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Windows CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-2022
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.x'
|
||||
- name: deps
|
||||
run: |
|
||||
pip install meson
|
||||
pip install ninja
|
||||
- name: make
|
||||
run: |
|
||||
meson setup build
|
||||
ninja -C build
|
||||
- name: test
|
||||
run: |
|
||||
meson test -C build
|
||||
Reference in New Issue
Block a user