You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
496 B
24 lines
496 B
4 years ago
|
name: MSVC Build
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: windows-latest
|
||
|
env:
|
||
|
PYTHONIOENCODING: "utf-8"
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
- uses: actions/setup-python@v1
|
||
|
- uses: seanmiddleditch/gha-setup-vsdevenv@master
|
||
|
- uses: BSFishy/meson-build@v1.0.1
|
||
|
with:
|
||
|
action: test
|
||
|
directory: _build
|
||
|
options: --verbose --fatal-meson-warnings
|
||
|
meson-version: 0.54.3
|