Create test.yml #1
This file contains hidden or 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: Test | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Compiler Toolkit | |
| run: .\install.ps1 | |
| shell: pwsh | |
| - name: Compiler test script | |
| run: '%AUTOIT_COMPILER_TOOLKIT%\SciTe\AutoIt3Wrapper\AutoIt3Wrapper.exe /NoStatus /prod /in test.au3' | |
| shell: cmd | |
| - name: Run compiler exe | |
| run: '%GITHUB_WORKSPACE%\test.exe' | |
| shell: cmd |