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 0a60433 commit cf04b3cCopy full SHA for cf04b3c
appveyor.yml
@@ -4,9 +4,18 @@ branches:
4
5
install:
6
- ps: Start-FileDownload 'http://leafo.net/dump/lua5_1_4_Win32_dll8_lib.zip'
7
+ - ps: Start-FileDownload 'http://leafo.net/dump/lua5_1_4_Win32_bin.zip'
8
- 7z x lua5_1_4_Win32_dll8_lib.zip
9
+ - 7z x lua5_1_4_Win32_bin.zip
10
- set PATH=C:\MinGW\bin;C:\MinGW\msys\1.0\bin;%PATH%
11
- dir .
12
13
build_script:
14
- make
15
+
16
+test_script:
17
+ - moon.exe test.moon
18
+ - moonc.exe test.moon
19
+ - lua5.1.exe -e 'print(require("moonscript.version").version)'
20
21
test.moon
@@ -0,0 +1 @@
1
+print "It works!"
0 commit comments