1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci.yml: fix run command

This commit is contained in:
Alexander Medvednikov 2020-01-08 14:18:26 +01:00
parent ae266f56e2
commit 526f12feff

View File

@ -173,7 +173,10 @@ jobs:
./v.exe --version
echo "Done"
- name: Test V
run: ./v.exe examples/hello_world.v && examples/hello_world.exe && ./v.exe build-examples
run: |
./v.exe examples/hello_world.v
examples/hello_world.exe
./v.exe build-examples
ubuntu-musl:
runs-on: ubuntu-18.04