Skip to content

Commit e9473cb

Browse files
authored
Create test.yml
1 parent 6d30a6b commit e9473cb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
shell: cmd

0 commit comments

Comments
 (0)