diff options
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d22e67f..17cad49 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml | |||
@@ -24,13 +24,12 @@ jobs: | |||
24 | luaVersion: ${{ matrix.luaVersion }} | 24 | luaVersion: ${{ matrix.luaVersion }} |
25 | - name: Setup ‘luarocks’ | 25 | - name: Setup ‘luarocks’ |
26 | uses: leafo/gh-actions-luarocks@v4 | 26 | uses: leafo/gh-actions-luarocks@v4 |
27 | - name: Make and install locally | 27 | - name: Make and install |
28 | run: | | 28 | run: | |
29 | export DEBUG=DEBUG | 29 | export DEBUG=DEBUG |
30 | luarocks --local make -- luasocket-scm-3.rockspec | 30 | luarocks make -- luasocket-scm-3.rockspec |
31 | - name: Run regression tests | 31 | - name: Run regression tests |
32 | run: | | 32 | run: | |
33 | eval $(luarocks --local path) | ||
34 | cd test | 33 | cd test |
35 | lua hello.lua | 34 | lua hello.lua |
36 | lua testsrvr.lua > /dev/null & | 35 | lua testsrvr.lua > /dev/null & |