fix(workbook): fix abs path /xl/worksheets/sheet1.xml -> xl/worksheets/sheet1.xml #457
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: | |
push: | |
paths-ignore: | |
- 'Example.md' | |
- 'HowToSetProject.ko.md' | |
- 'HowToSetProject.md' | |
- 'README.ko.md' | |
- 'README.md' | |
- 'TestEnv.md' | |
- 'ToTest.md' | |
- 'ToUpgrade.md' | |
- 'Vision.md' | |
- 'LICENSE' | |
branches: | |
- master | |
pull_request: | |
paths-ignore: | |
- 'Example.md' | |
- 'HowToSetProject.ko.md' | |
- 'HowToSetProject.md' | |
- 'README.ko.md' | |
- 'README.md' | |
- 'TestEnv.md' | |
- 'ToTest.md' | |
- 'ToUpgrade.md' | |
- 'Vision.md' | |
- 'LICENSE' | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Visual Studio | |
shell: cmd | |
run: | | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat" | |
cd TestExcel | |
qmake | |
nmake |