We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d30a6b commit e9473cbCopy full SHA for e9473cb
.github/workflows/test.yml
@@ -0,0 +1,20 @@
1
+name: Test
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ test:
9
+ runs-on: windows-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Install Compiler Toolkit
13
+ run: .\install.ps1
14
+ shell: pwsh
15
+ - name: Compiler test script
16
+ run: '%AUTOIT_COMPILER_TOOLKIT%\SciTe\AutoIt3Wrapper\AutoIt3Wrapper.exe /NoStatus /prod /in test.au3'
17
+ shell: cmd
18
+ - name: Run compiler exe
19
+ run: '%GITHUB_WORKSPACE%\test.exe'
20
0 commit comments