mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-02-06 05:08:22 +08:00
30 lines
605 B
YAML
30 lines
605 B
YAML
# windows.yml
|
|
|
|
name: Windows
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'README.ko.md'
|
|
- 'README.md'
|
|
- 'LICENSE'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.ko.md'
|
|
- 'README.md'
|
|
- 'LICENSE'
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Install Qt
|
|
uses: jurplel/install-qt-action@v2
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Run Visual Studio
|
|
shell: cmd
|
|
run: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"
|
|
cd TestExcel
|
|
qmake
|
|
nmake
|